HI All
How can I use jquery-ui 'dialog' with iframe?
<head><script>
$("#awesomewindow").dialog({position: [0,0],});
</script>
</head>
<body>
<iframe id="awesomewindow" src="http://dontcalltwice.com/">
Window content here!
</iframe>
<div style="position: absolute; width: 100%; height: 100%; overflow: hidden">
<iframe src="http://www.mainweb.com/" frameborder="0" scrolling="yes" height="100%" width="100%" > </iframe>
</div>
How can I make it load only one time?
Or do you have any suggestion howto use iframe(to call another webpage) on Dialog?
Thanks in advance.