Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is doing my head in, I have googled the life out of it, but below is my code, very simple, but I do not get the click event triggered when unchecking a checkbox??

$('#filterStarDiv #hotelFilterForm #Star0').click( function() {
alert('Checkbox 0 clicked');});

<div id="starsRemoved" style="display:none">No Stars Removed</div>
<div id="filterStarDiv">
<h6>Click on the star ratings below to add or remove hotels in that category</h6>
<form:form id="hotelFilterForm" action="" acceptCharset="UTF-8">
    <input type="checkbox" id="Star0"  name="Star0" value="0 Star" checked="checked" /> 0 Star<br />
    <input type="checkbox" id="Star1"  name="Star1" value="1 Star" checked="checked" /> 1 Star<br />
    <input type="checkbox" id="Star2"  name="Star2" value="2 Star" checked="checked" /> 2 Star<br />
    <input type="checkbox" id="Star3"  name="Star3" value="3 Star" checked="checked" /> 3 Star<br />
    <input type="checkbox" id="Star4"  name="Star4" value="4 Star" checked="checked" /> 4 Star<br />
    <input type="checkbox" id="Star5"  name="Star5" value="5 Star" checked="checked" /> 5 Star+<br />
</form:form>
</div>

Any help, even abuse if I am missing something stupid, would be appreciated.

share|improve this question
Ids are unique, you don't have to address them as a dependency like this: #filterStarDiv #hotelFilterForm #Star0. Just #Star0 will be enough. – nfechner Jul 21 '11 at 8:37
What is: <form:form and </form:form> ? Also input elements in a form need to be put inside a <div> or a <p>. You can't put them directly inside the <form> tag. – Ariel Jul 21 '11 at 8:38
Seems to work fine to me: jsfiddle.net/Maga2 (I fixed the form tag of course.) – Ariel Jul 21 '11 at 8:40
api.jquery.com/change – ilia choly Jul 21 '11 at 8:43

6 Answers

You can try something like this :

$("input[type=checkbox]").click( function() {
    if ($(this).is(':checked')){
        alert('check');
    }
    else{
        alert('uncheck');
    }
});

You can try it on this Fiddle

share|improve this answer

Is the jQuery code written just like that? Because if it is, you should put it inside <script> tags (and make sure jQuery is linked to this page).

Does it ever show the alert?

share|improve this answer
this should have been a comment – ilia choly Jul 21 '11 at 8:40
Sorry, I really looked for it but couldn't (and still can't) find the 'add comment' button for the original question... I'm new here :) – Eran Zimmerman Jul 21 '11 at 8:42
@Eran: You'll need 50 rep points before you can leave comments on questions that are not your own. – Jakob Christensen Jul 21 '11 at 8:49
it is in script tags, I just stripped out the bits, the previous suggestion provided me sufficient to get my code going. Thanks to all for a rapid response. – user855490 Jul 21 '11 at 8:51

Try this for your javascript:

$().ready(function() {
    $(':checkbox').click(function() { alert($(this).attr('name')); });
});
share|improve this answer
Using onclick as previously suggested works fine, but as also commented on, using jQuery is the goal. I have used this method for now, until I can work out why the selector isn't triggering the event. – user855490 Jul 21 '11 at 8:49

See the working demo over here jsfiddle. You might forgot to add jquery js file reference in your page.

share|improve this answer

But This works fine...

<html>
  <head>
    <title></title>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript">
      $(document).ready(function(){
        $('#filterStarDiv #hotelFilterForm #Star0').click( function() {
          alert('Checkbox 0 clicked');
        });
      });
    </script>
  </head>
  <body>
    <div id="starsRemoved" style="display:none">No Stars Removed</div>
    <div id="filterStarDiv">
      <h6>Click on the star ratings below to add or remove hotels in that category</h6>
      <form id="hotelFilterForm" action="" method="post">
        <input type="checkbox" id="Star0"  name="Star0" value="0 Star" checked="checked" /> 0 Star<br />
        <input type="checkbox" id="Star1"  name="Star1" value="1 Star" checked="checked" /> 1 Star<br />
        <input type="checkbox" id="Star2"  name="Star2" value="2 Star" checked="checked" /> 2 Star<br />
        <input type="checkbox" id="Star3"  name="Star3" value="3 Star" checked="checked" /> 3 Star<br />
        <input type="checkbox" id="Star4"  name="Star4" value="4 Star" checked="checked" /> 4 Star<br />
        <input type="checkbox" id="Star5"  name="Star5" value="5 Star" checked="checked" /> 5 Star+<br />
      </form>
    </div>
  </body>
</html>

Find the mistake you did.

share|improve this answer

Call the Javascript function using simple HTML onclick (This will not be shown within visual studio ide intellisense, just type it as onclick="") inside your check box server control as follows,

aspx section,

      <asp:CheckBox ID="chkBoxID" runat="server" onclick="function1();" />

Javascript section,

      function function1() {
              // do your logic here
       }

Hope this helps you..

share|improve this answer
1  
But this is not jQuery. One of the goals of jQuery is to avoid this obtrusive style. – Jakob Christensen Jul 21 '11 at 8:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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