js click stop propagation code example
Example 1: js propagation stop
oi
func(e?)
{
if(e) e.stopPropagation();
}
Example 2: html onclick stop propagation
// "event" is not universally supported, so instead grab the first
// argument passed through the onclick handler and call
// "stopPropagation()" on it
...