up vote 2 down vote favorite
share [g+] share [fb]

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?

link|improve this question
feedback

1 Answer

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|improve this answer
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 '09 at 7:25
$($checkbox).attr – Darin Dimitrov Nov 5 '09 at 7:26
Worked a treat. Cheers :D – anon Nov 5 '09 at 7:27
3  
var $checkbox = $(this); – Matt Huggins Nov 5 '09 at 7:30
@Matt, I've updated my sample to capture the jQuery element instead of the native one. – Darin Dimitrov Nov 5 '09 at 13:54
feedback

Your Answer

 
or
required, but never shown

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