16-01-2011, 20:01
Fatalnie szukasz 

Kod:
$("#s")
.focus(function(){
if ($(this).val() == "Search...") {
$(this).val("");
}
})
.blur(function(){
if ($(this).val() == "") {
$(this).val("Search...");
}
});