vote up 1 vote down star

Lets say I have this code

$(document).ready(function()
{
   $('.checkbox').change(function()
   {
      $('.hidden').slideUp('slow', function()
      {
         alert(checkbox value);
      }
   }
}

How do I access the checkboxes value? $(this) doesn't work as you're now in the .hidden element?

flag

1 Answer

vote up 3 vote down

You could capture the value in the outer function:

$(document).ready(function() {
    $('.checkbox').change(function() {
        var $checkbox = $(this);
        $('.hidden').slideUp('slow', function() {
            alert($checkbox.val());
        }
    }
}
link|flag
Well, that was easier than I expected... How would I then go about converting $checkbox to a jQuery object so I can get access to .attr() ? – anon Nov 5 at 7:25
$($checkbox).attr – Darin Dimitrov Nov 5 at 7:26
Worked a treat. Cheers :D – anon Nov 5 at 7:27
2  
var $checkbox = $(this); – Matt Huggins Nov 5 at 7:30
@Matt, I've updated my sample to capture the jQuery element instead of the native one. – Darin Dimitrov Nov 5 at 13:54

Your Answer

Get an OpenID
or

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