I have this setup
<div onclick="SomeEvent"> <input type=checkbox value=1>1 <input type=checkbox value=2>2 <input type=checkbox value=3>3 </div>
The problem when the user click on the checkboxes I don't want the SomeEvent fired.
In the some event I do have the line
"event.stopPropagation();"
but that seems to do nothing at all.