Hi, folks.
I've recently been doing a few simple tests and experiments. As a result,
I've noticed that, in dealing with 'onclick', IE seems less able than
Firefox to keep up with rapid clicking. In fact, Firefox seems to be able to
keep up with me no matter how rapidly I click, whereas IE... well, doesn't!
The following snippet of code demonstrates this (on my machine it does
anyway):
<html>
<body onload="valueEl ement = document.getEle mentById('value ')">
<p id="value">0</p>
<p><input type="button" onclick="valueE lement.innerHTM L++"
value="Incremen t"></input></p>
</body>
</html>
Can anyone else confirm that IE is unable to keep up with rapid clicking of
the button in this code, and that it's not just something wrong on my
machine? Does anyone have any suggestions on making IE respond more quickly?
Thanks in advance for any info.
A.
I've recently been doing a few simple tests and experiments. As a result,
I've noticed that, in dealing with 'onclick', IE seems less able than
Firefox to keep up with rapid clicking. In fact, Firefox seems to be able to
keep up with me no matter how rapidly I click, whereas IE... well, doesn't!
The following snippet of code demonstrates this (on my machine it does
anyway):
<html>
<body onload="valueEl ement = document.getEle mentById('value ')">
<p id="value">0</p>
<p><input type="button" onclick="valueE lement.innerHTM L++"
value="Incremen t"></input></p>
</body>
</html>
Can anyone else confirm that IE is unable to keep up with rapid clicking of
the button in this code, and that it's not just something wrong on my
machine? Does anyone have any suggestions on making IE respond more quickly?
Thanks in advance for any info.
A.
Comment