Javascript Popup Chromeless Window

This Tutorial Has Been Viewed 2,099 Times.

Here’s a simple but flexible javascript popup function. This effect is known as a chromeless window. This usually means that the window is resized and the browser features (nav buttons, address field, scrollbars, resize handle, and favorites) are hidden.

Javascript Source Code:

<script language="javascript">
< !–
var openwin;
function popupwin(url,myname,w,h,s)
{
settings='height=' h ',width=' w ',scrollbars=' s ',toolbar=no,location=no,status=no,menubar=no, resizable=no,dependent=no'
openwin=window.open(url,myname,settings);
}// –>
</script>

HTML Source Code:

<p>
Click here to
<a href="#" onClick="popupwin('mypage.php','Loading','300','300','yes');">
Open Popup Window</a> the pop up.
</p>
VN:F [1.9.13_1145]
Rating: 8.0/10 (3 votes cast)
VN:F [1.9.13_1145]
Rating: 0 (from 0 votes)

Javascript Popup Chromeless Window, 8.0 out of 10 based on 3 ratings

Incoming search terms:





You will also be interested in ,

Leave a Reply

Spam protection by WP Captcha-Free

Proudly designed by Mistonline.in.
Affordable Seo PackagesSeo BlogEdu Backlinks
More in JavaScripts, scripts (86 of 144 articles)


Hello this is a simple tutorial which shows how to add a popup window using javascript Add the below javascript ...