This is how I usually do it.
<form id="myform"> <input name="box" type="text" value="Type here"> </form>
_
$("input[name='box']", "#myform").bind("blur focus", function() { if ($(this).val() == "" ) { $(this).val("Type here"); }else if ($(this).val() == "Type here" ) { $(this).val(""); } });
And here is a fiddle to show how this works: http://jsfiddle.net/cR6P8/1/
If necessary, it can be associated with a download event.
source share