Free Pop-Up Scripts - Pop-up Script To Open A Window When Your Page Loads I
>> Saturday, September 4, 2010
It's been a long time since I wrote my last post... So here I post some Pop-Up Script.
In this First Script I'll give some example that You can use it in Your Blog...
Pop-up Script To Open A Window When Your Page Loads
Just put the following script between Your <HEAD> and </HEAD> tag
<script language="javascript">
<!-- begin
function popup(Site)
{
window.open(Site,'PopupName','toolbar=no,statusbar=no,
location=no,scrollbars=yes,resizable=yes,width=275,height=200')
}
// end -->
</script>
Then add the following code into your <BODY> tag:
onLoad="popup('URL/to/popup.html')"
Your<BODY> tag should then look something like this:
Note: In this and all script examples that follow, change the attributes "toolbar", "statusbar", etc., to on (1) or off (0) as you prefer (or omit them), and set the width and height to the size you require.<BODY bgcolor="#ffffff" text="#000000"
onLoad="popup('http://doit2us.blogspot.com/popup.html')">
That's all.. Happy Pop-Up...