daftar menu pop up
PASTEKAN SAJA DI GADGET: HTML/JAVASCRIPT .
KEBAWAH daftar menu pop up
==================================
<script type="text/javascript">
(function()
{
if (window.addEventListener)
{
window.addEventListener("load", setup, false);
}
else
{
window.attachEvent("onload", setup);
}
})();
function setup()
{
var elems = document.getElementsByTagName('a');
for (var i = 0; i < elems.length; i++)
{
if (elems[i].className === "external_link")
{
open_window(elems[i], "win_" + i, 0, 400, 300);
}
}
}
function open_window(elem, name, display, width, height)
{
var url = elem.href;
var s = "directories=" + display + ",location=" + display +
",menubar=" + display + ",resizable=" + display +
",scrollbars=" + display + ",status=" + display +
",toolbar=" + display + ",width=" + width +
",height=" + height + "";
elem.onclick = function()
{
window.open(url, name, s);
return false;
}
}
</script>
<p><a href="http://www.google.com" class="external_link">Open A Window</a></p>
<p><a href="http://www.yahoo.com" class="external_link">Open Another Window</a></p>
KEMBALI