Created
March 13, 2012 18:20
-
-
Save mtheoryx/2030446 to your computer and use it in GitHub Desktop.
Basic IU Search Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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