Content Search
Posted: Thu Jun 12, 2008 3:27 pm
I ran the source code of a CMSMS 1.3 generated page through BBEDIT and checked the document syntax markup and the following code was flagged as not conforming to specifications because of the lack of a space before the closing tag.
It should be
Code: Select all
<label for="cntnt01searchinput">Search</label>: <input type="text" name="cntnt01searchinput" size="20" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;"/>
Code: Select all
<label for="cntnt01searchinput">Search</label>: <input type="text" name="cntnt01searchinput" size="20" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;" />