I have a div (#replyLoop) that the link id lmor pulls content into from the href element data-posts when it is clicked. Works fine for the first click, but then after it does nothing. I suspect it has something to do with the structure of the code and not the events used - both "live" and "click" have the same result, as does removing return false; and only using the data-posts element of the link and removing the href portion. (return false; to disable the link's href from firing).
I always seem to miss the most obvious things when it comes to js - and I'm wondering if that's the case here.
(tooltip-e is ensuring that the tipsy function gets called whenever the new content is loaded in. (tooltips))
"Live" markup -
$(function(){
$("#lmor").live("click",function() {
$('#replyLoop').load($(this).attr('data-posts'), function(data) {
$('.tooltip-e').tipsy({
gravity: 'e',
fade: true,
html: true
});
});
return false;
});
});
"Click" markup-
$(function(){
$("#lmor").click(function() {
$('#replyLoop').load($(this).attr('data-posts'), function(data) {
$('.tooltip-e').tipsy({
gravity: 'e',
fade: true,
html: true
});
});
return false;
});
});
Any ideas on what I'm missing?
Edit I figured it out - using a combination of .live and including the "load more" in the appropriate file, I have gotten it to work.
The problem: it was being called outside of the page that was loading - so that when it was looking for a "next" page, that "next" page hadn't been pushed to the link yet because it didn't know it had been loaded.
I have also marked up the live code to use 's instead of "s. Thanks for your help!
.live()is deprecated, use.on()– Andrea Turri Jun 17 '12 at 19:42("#id")with('#id'), use just'for javascript and"for text. – Andrea Turri Jun 17 '12 at 19:44data? – undefined Jun 17 '12 at 19:49use just ' for javascript and " for text? :) – undefined Jun 17 '12 at 19:51