I'm trying to execute a function "animate_next()" when a "div" element
is clicked, but it isn't working. Here is what it looks like..
$('#playground').click(function(){animate_next();});
If I put..
$('#playground').ready(function(){animate_next();});
..then it will work fine.
Here is the "div
So, I am implementing a page on which words that have hints associated
in the DB are binded with the click event to show the Hint. Initially,
I go through and replace the words with html that goes word
So, then I bind the hint class with the click event,
$(".hint").bind("mouseup",function(e)
{
Does anyone have any idea why the click event on my blog isn't working in
IE7?
http://www.andyandjaime.com/
Clicking on the words
Comments :X: - View comments
or
Comments :X: - Be the first to add a comment
should fire this code:
$('.openComments b').click(function(){
$(this).parents('
3 matches
Mail list logo