What I am trying to do in jQuery is to take the first comment, out of a group that is all hidden until the user clicks on a button, and output that first comment so it is visible. I have this working, to a point. I want it to happen when the page loads, so I have it in the document.ready, but it won't work. So I attached it to a mousemove event, and it works.
But what I want to do now is if there is a comment, take the comment and show it like I have previously. But if there isn't a comment, then show the words 'No Comment'. Below is the code I'm using.
if ( jQuery('.dsq-commenter-name').length ){
jQuery(document).mousemove(function() {
jQuery('#comments p strong').text( jQuery('.dsq-commenter-name').text() );
jQuery('#comments p span.comment_excerpt').text( jQuery('.dsq-comment-text').text() );
});
}
This code isn't working. If I take away the if statement, it works fine to replace the text, but if no comments at all, it just puts empty space instead of leaving the words 'No Comments'. If I put the code directly into the console, it works. So I'm not sure why it won't work when the page loads. I'm assuming it has to be something with the if statement, but I've tried all kinds of things and can't get it to work.
EDIT: Not shown in this code but I have everything in a jQuery(document).ready(function() { and that doesn't seem to help. But the comments are handled by Disqus, and so I'm thinking they are loaded later, so how would I go about attaching an event to them?
SECOND EDIT: Okay I've fixed it, not sure if it is the best way to do it though. Thanks to @Jacob, I decided the comments were loading after the code had already executed. So I added on to the code using setTimeout, and so the function will run a second or so after the page loads, which works. Again, not sure if this is the way to do it or not, so please correct me if I'm wrong or if you want to see the code.
mousemoveevent (that's what's controlled by theifstatement). – Jacob May 16 '11 at 21:10jQuery(function(){ /* All code goes here */ });– cwolves May 16 '11 at 21:15