I\'ve recently posted a new question in How jQuery can prevent reopening a new window?. At that post, I mentioned to my need for something on F2 key.
No
You can try this, it will help you to open and observe multiple windows, check here
Javascript
var windows = {};
$('a').click(function(e){
var url = $(this).attr('href');
var name = $(this).attr('id');
if(windows.hasOwnProperty(name) && !windows[name].closed )
{
windows[name].focus();
}
else
{
windows[name]=window.open (url,name,"status=1,width=300,height=300");
}
});
Your Links
Google
Yahoo
DEMO.