for example here in documentation http://api.jquery.com/attribute-contains-selector/ it says
$('input[name*="man"]')
I would write instead
$("input[name*='man']")
is there any reason to use single or double quotation marks on inside or outside ?? is it just a matter of taste?