opening links on same tab
i am trying to create a page with divs. one div contains my tabs. what
i want is without leaving the page, opening links on same tabs,
I have tried the
...open links in the current tab instead of leaving the page
"Hijax" links after tab content has been loaded:
$('#example').tabs({
load: function(event, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
method but it worked only ones, after one click this doesn't work
anymore.
please help, thanks