Clear Input on Focus
Clear an <input> tag's value on focus.
HTML
<form>
<input type="text" value="asdf" /><br />
<input type="text" value="asdf2" /><br />
<input type="text" value="asdf3" /><br />
<input type="text" value="a4sdf" /><br />
<input type="text" value="as5df" />
</form>
JavaScript
$('input').focus(function() {
$(this).val('');
});