OPTIMIZED POPUP JAVA SCRIPT

Bookmark and Share
Step by Step how to install java script effect for optimized popup, you can follow instruction as below to implement in your website or blog :


<!-- ONE STEP TO INSTALL OPTIMIZED POPUP:

  1.  Copy the coding into the HEAD of your HTML document  -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
netscape = "netscape.html"; // set your browser pages
explorer = "explorer.html";
unknown  = "unknown.html";

// Determine the popup window properties
// options include:  top, left, toolbars, scrollbars,
// menubar, location, statusbar, and resizable

windowprops = "top=0,left=0,resizable=yes"
+ ",width=" + screen.width + ",height=" + screen.height;

ns = (navigator.appName == 'Netscape');
ie = (navigator.appName == 'Microsoft Internet Explorer');
url = (!ns & !ie) ? unknown : ( ns ? netscape : explorer);
window.open(url, "popupPage", windowprops);
//  End -->
</script>

<!-- Script Size:  1.06 KB -->

{ 0 comments... Views All / Send Comment! }

Post a Comment