How do I make a jQuery dialog button with a hyperlink?
Posted
by Hobhouse
on Stack Overflow
See other posts from Stack Overflow
or by Hobhouse
Published on 2009-09-10T10:12:40Z
Indexed on
2010/05/17
15:11 UTC
Read the original article
Hit count: 244
jquery-ui
|modal-dialog
In jQuery//dialog you can make a button like this:
dialog({ buttons: { "Ok": function() { $(this).dialog("close"); } } });
Can I make this button with a hyperlink to somewhere instead?
© Stack Overflow or respective owner