Suppose I have this code
$(document).ready(function()
{
$('.checkbox').change(function()
{
$('.hidden').slideUp('slow', function()
{
alert(checkbox value);
}
}
}
How to access the value of checkboxes? $ (this) doesn't work, since you are currently in a hidden element?
source
share