jQuery UI tabs link for _blank webpage
- by Megawolt
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...