jQuery UI tabs link for _blank webpage
Posted
by Megawolt
on Stack Overflow
See other posts from Stack Overflow
or by Megawolt
Published on 2010-05-24T06:34:54Z
Indexed on
2010/05/24
6:51 UTC
Read the original article
Hit count: 385
Hi fellas, In our format some pages must be in Tabs that's ok. But some of them must be open in a blank page... So How can i do that. I have try ;
$('#tablar #tabs ul li a').filter(function() {
return $(this).attr('rel') == 'ex';
})
.unbind()
.click(function(e) {
location.href = this.href;
e.preventDefault();
});
But not working...
© Stack Overflow or respective owner