How to focus on a particular input box on page load using Jquery?
To focus on first input box
$(function(){
$("input")[0].focus();
});
To focus on second input box
$(function(){
$("input")[3].focus();
});
To focus on a particular id of input box
$(function(){
$("id1")[0].focus();
});
$(function(){
$("input")[0].focus();
});
To focus on second input box
$(function(){
$("input")[3].focus();
});
To focus on a particular id of input box
$(function(){
$("id1")[0].focus();
});
Python newspaper-etutorialspoint
ReplyDeleteJavascript speech recognition-etutorialspoint
Shuffle list python-etutorialspoint
Convert Python list to numpy array-etutorialspoint
Sticky header on scroll jQuery-etutorialspoint
PHP Web Scraping : Documentation with example
Python *args and **kwargs
Hollow Diamond Pattern in Python
Write a python function to sum all the numbers in a list