Return to Snippet

Revision: 6626
at June 3, 2008 16:23 by preston91


Initial Code
<script>
function googles()
{
s = document.google.search.value
window.open('http://www.google.com/search?q=' + s)
}
</script>
<h3>Google Search</h3>
<form name = 'google' method = 'post'>
Enter Search Term:<input type = 'text' value = '' name = 'search'>
<p><input type = 'button' onclick = 'googles()' value = 'Search'>
</form>

Initial URL


Initial Description
Easy form to use.  Just enter the item to be searched and click the search button.  Great for comment boards and blogs, even forums.

Initial Title
Simple Google Search Form

Initial Tags


Initial Language
JavaScript