mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
17 lines
419 B
JavaScript
17 lines
419 B
JavaScript
|
/*
|
||
|
* Script for placeholder in search box
|
||
|
* Removes the default text onclick
|
||
|
*/
|
||
|
jQuery('.searchform .search').each(function() {
|
||
|
var default_value = this.value;
|
||
|
jQuery(this).focus(function() {
|
||
|
if(this.value == default_value) {
|
||
|
this.value = '';
|
||
|
}
|
||
|
});
|
||
|
jQuery(this).blur(function() {
|
||
|
if(this.value == '') {
|
||
|
this.value = default_value;
|
||
|
}
|
||
|
});
|
||
|
});
|