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..