Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Girish 7 posts 37 karma points
    Mar 27, 2013 @ 07:38
    Girish
    0

    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

     

  • Alex Skrypnyk 6133 posts 23952 karma points MVP 7x admin c-trib
    Mar 27, 2013 @ 11:28
    Alex Skrypnyk
    0

    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;
                    }
                }
            });
    

     

    Thanks

Please Sign in or register to post replies

Write your reply to:

Draft