simple popup

Status
Not open for further replies.

champ_rock

champ_rock
hi

i want to create a basic and simple popup which will open a website say www.google.com on my website page as soon as that html code is executed

can that be created in html only?? if yes then please tell me the complete code..

thanks
 

koolbluez

Šupər♂ - 超人
*www.echoecho.com/toolpopupgenerator.htm
*www.javascript-coder.com/window-popup/javascript-window-open.phtml
 

nileshgr

Wise Old Owl
Code:
<html>
<head>
<title></titile>
<script type=text/javascript>
<--JS begin
function popup()
{
window.open(*www.google.com);
}
//JS END-->
</script>
</head>
<body onLoad=popup()>
....
</body>
</html>
 
Last edited:
Status
Not open for further replies.
Top Bottom