Skip to content

Instantly share code, notes, and snippets.

@davejlong
Created July 8, 2011 14:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davejlong/1072005 to your computer and use it in GitHub Desktop.
Save davejlong/1072005 to your computer and use it in GitHub Desktop.
Mura CMS default search form
<form action="" id="searchForm">
<fieldset>
<input type="text" name="Keywords" id="txtKeywords" class="text" value="Search" onfocus="this.value=(this.value=='Search') ? '' : this.value;" onblur="this.value=(this.value=='') ? 'Search' : this.value;" />
<input type="hidden" name="display" value="search" />
<input type="hidden" name="newSearch" value="true" />
<input type="hidden" name="noCache" value="1" />
<input type="submit" class="submit" value="Go" />
</fieldset>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment