This is exactly what you want
$(document).tooltip({ selector: "[title]",_x000D_
placement: "top",_x000D_
trigger: "focus",_x000D_
animation: false});
_x000D_
<form id="form">_x000D_
<label for="myinput1">Browser tooltip appears on hover but disappears on clicking the input field. But this one persists while user is typing within the field</label>_x000D_
<input id="myinput1" type="text" title="This tooltip persists" />_x000D_
<input id="myinput2" type="text" title="This one also" />_x000D_
</form>
_x000D_
[ref]