Tabs: Open links in the same tab

Tabs: Open links in the same tab


Hi.
I load the tab content with AJAX and I want the links inside the AJAX
content to open in the same tab as they're displayed. I have read
about the .live-function but I can't get it to work for me.
This is what I got so far:
$('#tabs').tabs({
load: function(event, ui) {
$('a.player', ui.panel).live("click", function() {
$(ui.panel).load(this.href);
return false;
});
}
});
Any help?
Thanks,
Pontus