Came across this bug with textarea HTML element in IE6...
When textarea has more that 1568 characters the HTML form stops responding to SUBMIT event 9e.g. submit does not work anymore!!!
- Here is the sample HTML page that demonstrates the problem:
HTML Code:<HTML> <BODY> <FORM name="F" action="http://google.ca"> <TEXTAREA name="somename" cols="50" rows="20">Try to enter here text that is bigger that 1568 chars (Just copy/paste this text 12 times). The form will never submit!!! This works fine in FireFox. Looks like it is IE bug. If the property "name" of the textarea is removed it starts working! </TEXTAREA> <br/> <INPUT type="submit" value="SUBMIT BUTTON SHOULD REDIRECT TO GOOGLE"><br/> <INPUT type="button" value="Script Submit" onClick="document.F.submit();"> </FORM> </BODY> </HTML>
- Remedy for the problem:
To fix this wild behavior textarea should NOT have "name" attribute...
After it is removed, the example above works fine...
NOTE: This problem found so far in IE6 series of the browsers (FireFox as expected works just fine)
MESSAGE TO MICROSOFT: Please fix your browser! Also, please do support SVG image format "out of the box" (no plugins please!)



Reply With Quote



Bookmarks