// JavaScript Document $(document).ready(function(){ $('#searchbox').focus(function() { $(this).css('color', '#222'); $(this).val(''); }); $('#searchbox').blur(function() { if ($(this).val() == '') { $(this).val('Type a name...'); } }); });