I cannot get a simple alert to fire when a checkbox is clicked/checked. I have been scratching my head wondering why I cant get it to work and I know it is going to be something simple... So, what am I doing wrong?

<script type="text/javascript">
$('#test1').click(function(){
alert('clicked');
});
</script>

<input type="checkbox" id="test1" value="test1" name="test1" value="-1">test1</input>
link|improve this question

71% accept rate
2  
Is that the order of your code? Try declaring the click handler after the checkbox. – Jimmy Sawczuk Aug 22 '11 at 2:17
feedback

5 Answers

up vote 6 down vote accepted

You are not waiting for DOM ready. If you will, it'll work:

<script type="text/javascript">
$(function(){
    $('#test1').click(function(){
        alert('clicked');
    });
});
</script>

<input type="checkbox" id="test1" value="test1" name="test1" value="1" /> test1

Fiddle: http://jsfiddle.net/sanbc/

link|improve this answer
Switched it out, didn't work, then found a conflicting library, removed it and it works fine. Thanks for the tip though, Ill make sure to include that on all future attempts. – livinzlife Aug 22 '11 at 2:34
feedback

You'll want to wrap it in document.ready() otherwise the click event might be assigned before the element exists.

OR

Make sure the jQuery library is included.

OR

Make sure no other javascript libraries are included, they can mess up the $ object. If they are, replace $ with jQuery.

Try those and get back to me with a comment

link|improve this answer
feedback

This works for me.

Example: http://jsfiddle.net/jasongennaro/9dSMM/

Perhaps there is a problem with the DOM not being ready?

Remember to wrap this in a document.ready.

$(document).ready(function() {
   // put all your jQuery goodness in here.
 });

More here

link|improve this answer
feedback

Put your code inside a $(document).ready event so that you can be sure the checkbox exists when you try to register an event handler with it.

link|improve this answer
feedback

Just to check the obvious, I've never written any Jquery UI code without this wrapper:

 $(document).ready(function() {
       //......
     });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.