How can I execute two event at same time ? I do as following way. But it doesn't work properly. If I execute single at once, both work fine.
$(document).on('click', '#menu', function(){
if($(this).is(':checked'))
$(this).parent().find('ul').slideDown('slow');
else
// these two events
$(this).parent().find('input[type="checkbox"]').prop('checked', false);
$(this).parent().find('ul').hide('slow');
});