This works.
$(document).ready(function(){
$(".items article").click(function(){
window.location=$(this).find("a").attr("href");
return false;
});
});
However, when the user navigates to other records trough ajax on that same page, we got an irritant refresh. (not more irritant that my ignorance about how does that occur btw).
If I change the code to use delegate:
$(document).ready(function(){
$(".items article").delegate('click', function(){
window.location=$(this).find("a").attr("href");
return false;
});
});
I still got the irritating refresh.
If I change it to live, I got it with no refresh.
$(document).ready(function(){
$(".items article").live('click', function(){
window.location=$(this).find("a").attr("href");
return false;
});
});
I've read on stackoverflow that we should use delegate instead of live, on this case however, live seems to do the job while delegate doesn't. OR, am I using it wrongly ?
UPDATE: So, and using on, by taking the same examples as above:
$(document).ready(function(){
$('#morespecifcelement').on('click','.items article', function() {
window.location=$(this).find("a").attr("href"); return false;
});
});
I still got the page refreshed.
Please advice,
delegatecan always replacelive.oncan always replacedelegate. See the documentation which explains how to usedelegateand how to transform between the 3 forms in a fair bit of detail including examples and remarks; see the links toonandlivedocumentation.) – user166390 Jul 3 '12 at 17:30delegateis a little off. You are supposed to delegate to some container and then pass, as an argument, the selector you wish to match inside of that container. Check out the docs. – lbstr Jul 3 '12 at 17:33