Let pop-up windows become "considerate" some

Source: Internet
Author: User
Tags window
Pop-up windows when surfing the web and entering some websites will appear pop-up windows. It may be the webmaster to your cordial greetings, may also be the site's important notices, website ads and so on. But poor use can cause boredom. How can I make a pop-up window work without affecting the viewer browsing the page?
The General pop-up window needs you to close it, the viewer must feel very troublesome. It would be nice if I could shut it down. To achieve this effect is really simple.

1. First, add the following program to the < head >< script language= "JavaScript" >
<!--
var gt = unescape (' 3e ');
var popup = null;
var over = "Launch pop-up Navigator";
Popup = window.open (', ' Popupnav ', ' Width=225,height=235,resizable=1,scrollbars=auto ');
if (popup!= null) {
if (Popup.opener = = null) {
Popup.opener = self;
}
Popup.location.href = ' dogq.htm ';
}
-->
</script >

2. Create a new dogq.htm file (that is, the file used by the pop-up window) that will match the file name set in "Popup.location.href = ' dogq.htm" above.

3, edit the new file dogq.htm (note dogq.htm to be in the same directory as the home page file). First < body bgcolor= "#FFFFFF" text= "#000000" > Changed to < body bgcolor= "#fef4d9", and then in < body ></body > to join:
< script language= "JavaScript" >
function Closeit () {
SetTimeout ("Self.close ()", 10000)
}
</script >

Note: 10000 of the penultimate line refers to too much time off (as modified as needed), and 10000 to 10 seconds. In this way, the pop-up window will automatically close after 10 seconds, and the viewer does not need to ignore it.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.