pixelhandler

Pushin' & pullin' pixels on the net

Text in WordPress Search Input Fields

Using jQuery to add the text ‘Search’ to the search input box in WordPress; when user enters text input to search the helper text is removed :
// set Search input to default text
$('#s').attr('value','Search');

// clear search input form
$('#s').focus(function(){
	$('#s').val('');
});

Comments