newWindow: Opening new browser window with 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);      
    }    
});  

Demo

Click Me

Licensing

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

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