I'm new to mootools
, I am working on the demo example for moopopup
but for me option url to load remote does not pop up.
<link href="moopopup.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="mootools-core-yc.js"></script>
<script type="text/javascript" src="mootools-more-yc.js"></script>
<script src="moopopup-yc.js" type="text/javascript"></script>
<script type="text/javascript">
function runExample3() {
var mypopup3 = new moopopup({
title: 'My home page',
resizable: false,
width: 800,
max_body_height: 600,
url: 'http://www.google.co.in/'
});
mypopup3.display();
}
</script>
</head>
<body onLoad="prettyPrint()">
<span class="button link" onclick="runExample3();">run javascript</span>
</body>
Here is the URL: