transaction.htmlとしてページがあります
このページを別のページのポップアップで開く方法は、jquery ダイアログで show_transactions.html と言います
$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');
このコードは show_transactions.html にあります。
ありがとう..