Dear all,
I am using jquery modal poup to open a page (example from parent page,a.spx, iam opening the child page,b.aspx.)
Following is the code
<script type="text/javascript">
$(function() {
$("[id$='lnkbtn']").click(function() {
var str = $(this).attr("details");
var page = ('../b.aspx?no=' + str);
var $dialog = $('<div></div>').html('<iframe style="border: 0px; " src="' + page + '" width="100%" height="100%"></iframe>').dialog({ autoOpen: false, modal: true, height: 500, width: 900});
&nbs ...
Go to the complete details ...