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?