1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 <script type="text/javascript">
$(document).ready(function() {
$('input[type="text"]').focus(function() {
if (this.value == this.defaultValue){
this.value = '';
}
if(this.value != this.defaultValue){
this.select();
}
});
$('input[type="text"]').blur(function() {
if (this.value == ''){
this.value = this.defaultValue;
}
});
});
</script>
wp_nav_menu()
December 8, 2012/ Updated: December 8, 2012