internetguy
Technical User
ok, I have a javascript function that opens a shoubox when you click a link. I have a pair of on/off links, and I know how to do the on, but I do not know how to close the window from the main page. I also want this shoutbox window to display on top of the main page. Here is my opener script
function shoutOut(url)
{
window.open(url,'shoutbox',config='height=600,width=500,toolbar=no,scrollbars=no,menubar=no,status=no,resizable=no');
}
<a href="javascript:void(0);" onClick="shoutOut('shoutbox.php');">On</a>
If you can help me with the two problems I have it would be greatly appreciated.
function shoutOut(url)
{
window.open(url,'shoutbox',config='height=600,width=500,toolbar=no,scrollbars=no,menubar=no,status=no,resizable=no');
}
<a href="javascript:void(0);" onClick="shoutOut('shoutbox.php');">On</a>
If you can help me with the two problems I have it would be greatly appreciated.