<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">hi friends<div>i want to make a searchbox that says "search" in the field, but that then automatically clears when it's clicked upon. i only want this for the searchbox on some pages, not all.</div><div><br></div><div>is there away to make this happen with (:searchbox:)? or with regular (:input:)'s? i can't figure it out.</div><div><br></div><div>i currently have the following code installed in config that causes inputs with a name like "myInput-clear" to clear when clicked upon:</div><div><br></div><div><div>$InputTags['searchbox'][':html'] = "<input type='text' \$InputFormArgs  </div><div>    onfocus=\"if(this.name.indexOf('-clear')!=-1) this.value=''\" />";</div></div><div><br></div><div>in the case of (:searchbox:), i can't figure out how to add -clear to it's name.</div><div>and in the case of (:input:), i can easily add -clear to the name, but i can't figure out how to make it do the search i want, and to pass the value.</div><div><br></div><div>ideally i'd like to insert some javascript like this:</div><div><input type="text" name="field-name-here" onclick="this.value='';" onfocus="this.select()" onblur="this.value=!this.value?'Enter Email To Get Updates':this.value;" value="Enter Email To Get Updates" /></div><div><br></div><div>... but somehow i'm not comprehending the PmWiki instructions posted here: <a href="http://www.pmwiki.org/wiki/Cookbook/InputFormsAndJavaScript">http://www.pmwiki.org/wiki/Cookbook/InputFormsAndJavaScript</a></div><div><br></div><div>thanks for any advice!</div><div>adam</div></body></html>