🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

newwindow is a super tiny jQuery plugin that opens specific anchor links (typically external links) within the document in the new browser windows or tabs.

external-link

Documentation

newWindow: a jQuery plugin

newWindow is a super-simple jQuery plugin for opening new browser windows when an anchor is clicked.

Usage

Open all links with a rel attribute of external in a new window:

  $('a[rel~=external]').newWindow(); 

Add a callback when a new window is opened:

  $('#myLink').newWindow({     open: function (newWindow, e) {       console.log('Window opened', newWindow, e);     }   }); 

Licensing

Licensed under the MIT: http://www.opensource.org/licenses/mit-license.php

Copyright (c) 2011 Stateless Systems (http://statelesssystems.com)


You May Also Like