If you want to Jquery of javascript function with want to auto click on button, without manual press.
Simple use $("#button_id").click();
Example :
function abc(){
alert("abc");
$("#button_id").click();
}
- 1 like
- 0 comment
Sanjana Kumari |26 Mar at 04:03
If you want to Jquery of javascript function with want to auto click on button, without manual press.
Simple use $("#button_id").click();
Example :
function abc(){
alert("abc");
$("#button_id").click();
}