Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Doc Aha

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

how to open links in current window, new window, background.

   1  
   2  function open2(url, opt){
   3    if (opt == 0) // current window
   4      window.location = url;
   5    else if (opt == 1) // new window
   6      window.open(url);
   7    else if (opt == 2) // background window
   8      {window.open(url); self.focus();}
   9  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS