Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I want to show jquery dialog on the page for forgot password. Can anyone tell me how to create and invoke with the dialog?
Thanks
Hi Girisg,
You could use http://jqueryui.com/dialog/
Example of usign:
$('[id$=TermsAndConditionsDescription]').dialog({ resizable: true, height: 600, width: 800, modal: true, title: $('[id$=TermsAndConditionsTitle]').html(), buttons: { "Accept": function () { $(this).dialog("close"); return true; }, Cancel: function () { $(this).dialog("close"); return false; } } });
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to show the jquery dialog?
I want to show jquery dialog on the page for forgot password. Can anyone tell me how to create and invoke with the dialog?
Thanks
Hi Girisg,
You could use http://jqueryui.com/dialog/
Example of usign:
Thanks
is working on a reply...