Código:
$(document).ready(function() { $("#searchbar4").attr("value", "[email protected]"); var text = "[email protected]"; $("#searchbar4").focus(function() { $(this).addClass("active"); if($(this).attr("value") == text) $(this).attr("value", ""); }); $("#searchbar4").blur(function() { $(this).removeClass("active"); if($(this).attr("value") == "") $(this).attr("value", text); });