I get the following warning from a search from on my page when I use the HTML Tidy validator in firefox:
line 218 column 1 - Warning: <input> proprietary attribute "action"
line 218 column 1 - Warning: <input> proprietary attribute "columns"
line 218 column 1 - Warning: <input> proprietary attribute "autocomplete"
line 218 column 1 - Warning: <input> proprietary attribute "delay"
the section of code in question is:
<input type="text" name="query" id="query" size="20" value="" action="search/include/js_suggest/suggest.php" columns="2" autocomplete="on" delay="2000" />
when I do "cleanup this page" I get this:
<input type="text" name="query" id="query" size="20" value="" action="search/include/js_suggest/suggest.php" columns="2" autocomplete="on" delay="2000">
I which is weird since the attributes which Tidy was complaining about are still there after cleanup! Does anyone know how to get rid of these warnings? Any help would be greatly appreciated!
line 218 column 1 - Warning: <input> proprietary attribute "action"
line 218 column 1 - Warning: <input> proprietary attribute "columns"
line 218 column 1 - Warning: <input> proprietary attribute "autocomplete"
line 218 column 1 - Warning: <input> proprietary attribute "delay"
the section of code in question is:
<input type="text" name="query" id="query" size="20" value="" action="search/include/js_suggest/suggest.php" columns="2" autocomplete="on" delay="2000" />
when I do "cleanup this page" I get this:
<input type="text" name="query" id="query" size="20" value="" action="search/include/js_suggest/suggest.php" columns="2" autocomplete="on" delay="2000">
I which is weird since the attributes which Tidy was complaining about are still there after cleanup! Does anyone know how to get rid of these warnings? Any help would be greatly appreciated!
