"hijax" - bug or feature ?

"hijax" - bug or feature ?


Ok, so i've been banging my head down the table for a few days over
this.
it's regarding that snipper from the faq section of the tabs page.
$(document).ready(function(){
        $('.selector').tabs({
load: function(e, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
});
the thing is, that it works. But only on the first page loading in, if
you click a link - page load in, and then click a link again on that
page just loaded in, it'll take you directly to that page and not load
it into the container :(
I just dont get why, cause it looks like its suppose to grab all "a"
and load it into the container.
I just wanted to know if anyone have ever come across why it does
that ?