Click to See Complete Forum and Search --> : Making Pop-up Ads


Mako3
06-21-2004, 05:13 PM
Hey everyone,
I was wondering how to make a simple pop-up ad for my site that just says Welcome!!!. How can I make that and have it pop-up as many times as I want?

beatmaster
06-27-2004, 06:18 PM
hey

to make a pop up to write a message as you want you could do the following:-

<script language="JavaScript">
<!--
//Define the Popup Window Here //
var popUp = window.open('about:blank','','height=200, width=500');
//Define the properties of the popup window - replace the X's with your message //
popUp.document.writeln('XXXXXXX');
//
</script>

As for the pop up as many times as you want, what do you mean by that?
Hope that was of help for my first post :)