入力内にテキストヒントを含むフォームがあります。フォーカスされたテキストを削除する方法は知っていますが、何も入力せずにクリックした場合、どうすれば元に戻すことができますか?
<form class="grid">
<section>
<label id="top">Create New Contact</label>
</section>
<section>
<span class="field"><input type="input" class="regular" id="firtName" value="First Name"></input></span>
</section>
<section>
<span class="field"><input type="input" class="regular" value="Last Name"></input></span>
</section>
<section>
<span class="field"><input type="input" class="regular" value="Salutation"></input></span>
</section>
<section>
<span class="field"><input type="input" class="regular" value="Title"></input></span>
</section>
<section>
<span class="field"><input type="input" class="regular" value="Department"></input></span>
</section>
<section>
<span class="field"><input type="input" class="regular" value="Accountant"></input></span>
</section>
<section>
<div id="lineDiv"></div>
</section>
<section>
<a href="#" class="cancel" data-role="button" data-inline="true" data-mini="true">Cancel</a>
<a href="#" id="save" data-role="button" data-inline="true" data-mini="true">Save</a>
</section>
</form>
jQuery('input').focus(function() {
jQuery(this).val('');
});