Question
What is the HTML for a pop-up for instance, on my custom site on geocities.com, if i wanted a pop-up to come up for www.datadoctors.com, then what would the HTML be?
How do I create a pop-up window?
QuestionWhat is the HTML for a pop-up for instance, on my custom site on geocities.com, if i wanted a pop-up to come up for www.datadoctors.com, then what would the HTML be?
AnswerThis question was answered on September 9, 2003. Much of the information contained herein may have changed since posting. Put the following code in your <HEAD> tag. like this: <HEAD> <SCRIPT LANGUAGE="Javascript"> function newwin() { window.open("http://www.datadoctors.com","HTML4ME","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizeable=0,width=540,height=396") } //--> </SCRIPT> </HEAD> Put the following in your <BODY> tag. like this: <BODY onload="javascript:newwin();">
AuthorPosted by Student of Katharine Gibbs School - New York on September 9, 2003
|