Found an interesting behavior today. I have an LI element that has a click handler on it, but that LI element has an A element which has a link. So it looked kind of like this: 1 2 3 4 5 <ul> <li onclick="doSomething(); "> <A href="http://somewhere" target="_blank">Go</a> </li> </ul> But when I clicked on [...]
↧