Is there a simple way to set the focus (input cursor) of a web page on the first input element (textbox, dropdownlist, ...) on loading the
The most comprehensive jQuery expression I found working is (through the help of over here)
$(document).ready(function() { $('input:visible:enabled:first').focus(); });