Is it possible to call a server side buttons click event using javascript or jquery If yes then how to do it
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- How to fix IE ClearType + jQuery opacity problem i
- void before promise syntax
- jQuery add and remove delay
yes, you can do it with the following code:
The button's click fire on textbox(txtDOB)'s blur event. Hope this will help you.
in jquery
and invoke the function with
call the click() of specified button which will trigger server side events too in web forms.
Thanks
Lets say this is your html:
In jquery, you invoke click of button as below:
And in javascript:
Yes, javascript can do that. I assume you are using ASP.Net