Search engine

Question by Patty Ann:
With html or dhtml or java script how do you open a popup without the menu bar, status bar? just the webpage?

I am creating a web site with sample web pages on it. When you click on a link I want the page to open up in a pop up window with nothing on it except the name of the web page. No menus, no tool bars, just the name on the top bar.


——————————————

Answer by Rex S
In JavaScript

enabled_features = ‘toolbar=no, location=no, directories=no, status=no, menubar=no’;

window.open (“mypage.html”,”Window Name”,enabled_features)

HTH

——————————————
Know better? Leave your own answer in the comments!