Hijaxing does nothing.

Hijaxing does nothing.

Hi all,

I'm developping a website for a client with jquery ui tabs.

I read that if you want links inside an AJAX loaded tab to open in the same tab you have to "hijax". I've found the following code. I've put in some comment from debugging using Firebux:

    $("#tabs").tabs({
    load: function(e, ui) {
        $('a', ui.panel).click(function() {
            //i get here when a link is clicked (good thing)
            var test = this.href;
            // the test var gets the attribute href from a (also a good thing)
            //then firebug stops at the breakpoint set for the line under but nothing happens when i hit 'play'
            $(ui.panel).load(this.href);
            //return false i found in other fora
            return false;
        });
    }
    });

So when I click the code gets executed but nothing happens with the link...

thanks in advance