I´m using JQuery Tools http://flowplayer.org/tools/ in one big project.
The issues is: When I load a page using ajax all this JQuery Tools stuff stop working. I know I have to re-bind the events or use jQuery.Live but I don´t know how to do this with JQuery Tools.
I need methods like
$(".element").overlay(...)
$(".element").tabs(...)
workin live after using jQuery.load() (Ajax)
Anybody know how to do this please?
Here the update with the ajax and live code:
$(".commentlist h3 a").click( function () {
$('#container').html('loading').load('test.php #business-wrapper', function() {
alert('Load was performed.');
});
return false;
});
The test.php contain this tabs and 'load' event does not work with ajax an without ajax does not work either
$("ul.tabs").live('load', function() {
$(this).tabs("div.panes > div", { effect: 'fade', current: 'active', tabs: 'li' });
})
Thanks.