loading and animating
loading and animating
Hi guys,
I would like a little help on this :
I’ve managed to make the comments appear below my entries with some javascript(jquery). I’m not very comfortable with javascript and I would like to add a bit of animation in it (like a slide down)
Can someone tell me what i need to change in my code to do this.
-
$(document).ready(function() {
$("a.comments").click(function() {
$(".comments_info").load('../site/comments/'+ this.id);
return false;
});
});
Where should I put the slideDown thing ? How can have a loader ?
Thanks a lot
