I have the following a href
I use to open jquery dialogs, which works fine. Basically, the openDialog class has attached the jquery dialog code:
<a class='openDialog' data-dialog-id='myEditDlg' data-dialog-autosize='false' data-dialog-alt='580' data-dialog-larg='740' data-dialog-title='test dialog' href='/mycontroller/EditDlg/myid'></a>
Now, I'd like to call it by the onclick
event of a button.
Basically, I'd like to have the same behaviour of the clicked <a class='openDialog' href
when I click a button. How can I do it?**
You can emulate the click by
This will emulate the click event on the link. It is the same as clicking on the link. This ofcourse won't change the location if you have an event handler that stops the default behavior of the link If you want to redirect to the href attribute you can use:
So if you want to call this on click of a button.
If I get you question right then may be jQuery trigger()(?) is what you are looking for. Example: