I have an HTML / JavaScript project containing a few dozen anchor tags; each anchor tag is the same JavaScript function, but with a different parameter.
Everything looks fine in Firefox and Chrome, but in Internet Explorer (IE) page appears, restarts (flashing) every time I push the anchor tag (as shown below). How can I get IE to stop the reboot / flickering? I'd rather not rewrite the entire script. I tried onclcick = 'javascript ... and href =' javascript ... but both have the same problem (although onclick seems a little better).
<a onclick='javascript:foo(22)'></a>
source share