Skip to content

Instantly share code, notes, and snippets.

@mtheoryx
Created March 13, 2012 18:20
Show Gist options
  • Save mtheoryx/2030446 to your computer and use it in GitHub Desktop.
Save mtheoryx/2030446 to your computer and use it in GitHub Desktop.
Basic IU Search Box
<!-- BEGIN IU SEARCH BOX -->
<form id="iusearch" method="get" action="https://search.sharepoint.iu.edu/sites/demo2/Pages/results.aspx">
<fieldset id="set1">
<ul class="unstyled">
<li><a href="http://people.iu.edu/">People</a></li>
<li><label for="k">IU Search:</label></li>
</ul>
</fieldset>
<fieldset id="set2">
<input type="text"
name="k"
id="searchtxt"
maxlength="255"
value="Search"
onfocus="if(this.value=='Search')this.value='';"
onblur="if(this.value=='')this.value='Search';" />
<input type="image" name="btnG" id="go" src="img/go_red.gif" alt="GO" />
</fieldset>
</form>
<!-- END IU SEARCH BOX -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment