Skip to content

Instantly share code, notes, and snippets.

@JulieKuehl
Last active September 21, 2022 00:56
Show Gist options
  • Save JulieKuehl/4dd64f7480a98f99d814 to your computer and use it in GitHub Desktop.
Save JulieKuehl/4dd64f7480a98f99d814 to your computer and use it in GitHub Desktop.
Search form without submit button
<!-- Thanks to http://www.dagondesign.com/articles/wordpress-search-form-without-search-button/ -->
<?php $search_text = "Search"; ?>
<form method="get" id="searchform"
action="<?php bloginfo('home'); ?>/">
<input type="text" value="<?php echo $search_text; ?>"
name="s" id="s"
onblur="if (this.value == '')
{this.value = '<?php echo $search_text; ?>';}"
onfocus="if (this.value == '<?php echo $search_text; ?>')
{this.value = '';}" />
<input type="hidden" id="searchsubmit" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment