Jquery dialog to open another page

Posted by Hulk on Stack Overflow See other posts from Stack Overflow or by Hulk
Published on 2010-05-03T05:32:30Z Indexed on 2010/05/03 5:38 UTC
Read the original article Hit count: 308

There is a page as transaction.html

How to open this page in a popup in another page say show_transactions.html in a jquery dialog

       $dialog.html()  //open transaction.html in this dialog
     .dialog({
        autoOpen: true,
        position: 'center' ,
        title: 'EDIT',
        draggable: false,
        width : 300,
        height : 40, 
        resizable : false,
        modal : true,
     });
     alert('here');
     $dialog.dialog('open');

This code is present in show_transactions.html

Thanks..

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-dialog