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...
Here is the html;
<div id="tablar">
<div id="tabs">
<ul>
<li><a href="#tabs-1">Tüm Liste</a></li>
<li><a rel="ex" href="gtl.aspx?EventId=2">Yeni Ekle</a></li>
<li><a href="#tabs-2">Detaylı Arama</a></li>
<li><a rel="ex" href="RaporGtl.aspx">Raporla</a></li>
</ul>
<div id="tabs-1">...
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...
that turns #ui-tabs-2 at addressbar...