admin管理员组文章数量:1340301
Currently I am using John Resig's LiveQuery plugin/function to allow users to sort through a long unordered-list of list-items. The code is as follows: $('input#q').liveUpdate('ul#teams').focus();
The issue arises when I use ajaxified tabs to sort the lists. Essentially I use ajax to pull in different lists and the liveUpdate()
function doesn't have access to the new li's.
I assume I would need to bind this using the .live()
function. But I am unclear how to bind this to an ajax event, I've only used the "click" event. How would I bind the new liveUpdate()
to the newly loaded list-items?
EDIT: The ajax tabs is run through the wordpress ajax api so the code is fairly plex, but simplified it is something like this:
$('div.item-list-tabs').click( function(event) {
var target = $(event.target).parent();
var data = {action, scope, pagination}; // Passes action to WP that loads my tab data
$.post( ajaxurl, data, function(response) {
$(target).fadeOut( 100, function() {
$(this).html(response);
$(this).fadeIn(100);
});
});
return false;
});
This is simplified for the sake of this conversation, but basically once the $.post
loads the response in place .liveUpdate()
doesn't have access to it. I believe the .live()
function is the answer to this problem, I'm just unclear on how to implement it with the $.post()
Currently I am using John Resig's LiveQuery plugin/function to allow users to sort through a long unordered-list of list-items. The code is as follows: $('input#q').liveUpdate('ul#teams').focus();
The issue arises when I use ajaxified tabs to sort the lists. Essentially I use ajax to pull in different lists and the liveUpdate()
function doesn't have access to the new li's.
I assume I would need to bind this using the .live()
function. But I am unclear how to bind this to an ajax event, I've only used the "click" event. How would I bind the new liveUpdate()
to the newly loaded list-items?
EDIT: The ajax tabs is run through the wordpress ajax api so the code is fairly plex, but simplified it is something like this:
$('div.item-list-tabs').click( function(event) {
var target = $(event.target).parent();
var data = {action, scope, pagination}; // Passes action to WP that loads my tab data
$.post( ajaxurl, data, function(response) {
$(target).fadeOut( 100, function() {
$(this).html(response);
$(this).fadeIn(100);
});
});
return false;
});
This is simplified for the sake of this conversation, but basically once the $.post
loads the response in place .liveUpdate()
doesn't have access to it. I believe the .live()
function is the answer to this problem, I'm just unclear on how to implement it with the $.post()
- 1 Can you please post code you are using for your “ajaxified tabs” ? – matdumsa Commented Mar 4, 2010 at 5:34
- I've edited the original post with the ajax-tabs js – kylemac Commented Mar 4, 2010 at 16:51
5 Answers
Reset to default 4As mentionned in the documentation of JQuery, .live() is considered deprecated. You should use the method .on() instead.
$("#yourSelector").on("click", function() {
// statement
});
To also manage futur object of the selector type, you can use .on() like this
$(document).on("click", "#yourSelector", function() {
// statement
});
Try using jQuery's Ajax Events
$('input#q').ajaxComplete(function(){
$(this).liveUpdate('ul#teams').focus();
$(this).unbind('ajaxStop');
});
I also got trouble with using just
$('selector').click(function(..
after an Ajax call, and finally found that we need to use
$('selector').live("click", function(){..
or the new method
$(document).on('click', 'selector', function(){..
to bind the event for new elements created after an Ajax call.
$(document).on('click','selector', function(event){
//your code
});
For live
$('selector').live('click', function(event){
//your code
});
$('input#q').live(function() {
$(this).liveUpdate('ul#teams').focus();
});
$("div.item-list-tabs").live("click",function(){
//statements..
});
本文标签: javascriptHow to use jQuery live() with ajaxStack Overflow
版权声明:本文标题:javascript - How to use jQuery .live() with ajax - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631267a2513148.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论