I'm trying to show tooltip of <input>
on button click manually with jQuery ui tooltip.
For that if I set like this
<input type="text" id="has-tt" title=""></input>
for the first click alone its showing tooltip.But If I set title attribute with some content as below its working fine.
<input type="text" id="has-tt" title="Tooltip Text"></input>
Tried Sample is here. Is there any way to do this without setting value to title attribute??