I have a form area on my html page (method="post"). Within that form is a default: one widget at $5.00 totals $5.00.
It looks like a textarea with a "1" in it, followed by the word, "widget," followed by a "total" textarea with a "5" in it.
IE uses the JS "onKeyUp," so that when the visitor types in a "2," the total instantly displays a "10" as soon as the key is typed. However, to make this work in Netscape, I have additionally included the JS "onChange" handler.
Here's the problem: When the visitor uses Netscape 4, and they type a "2" in the textarea, the, "5" WON'T UPDATE to a "10" .... UNLESS the visitor clicks anywhere else on the page.
What can be done to make Netscape4 do the same as Explorer?
(by the way, many many people have not upgraded their Netscape4 yet, so that is why I need this fix)
Thank you!
It looks like a textarea with a "1" in it, followed by the word, "widget," followed by a "total" textarea with a "5" in it.
IE uses the JS "onKeyUp," so that when the visitor types in a "2," the total instantly displays a "10" as soon as the key is typed. However, to make this work in Netscape, I have additionally included the JS "onChange" handler.
Here's the problem: When the visitor uses Netscape 4, and they type a "2" in the textarea, the, "5" WON'T UPDATE to a "10" .... UNLESS the visitor clicks anywhere else on the page.
What can be done to make Netscape4 do the same as Explorer?
(by the way, many many people have not upgraded their Netscape4 yet, so that is why I need this fix)
Thank you!
Comment