blausaufkind
New Member
If I have a checkbox which has this name attribute below:\[code\]name="answerName[True]"\[/code\]How come when I peform this jquery line below that it does not show the checkbox?\[code\]$(this).closest('.option').siblings('.answer').find('input[name=answerName[Yes]]').show();\[/code\]if the name attribute was this:\[code\]name="answerNameTrue"\[/code\]and the jquery was this:\[code\]$(this).closest('.option').siblings('.answer').find('input[name=answerNameYes]').show();\[/code\]then it does show but how come when I put [] brackets around it that it suddenly doesn't work and not show the check box?