Hi.
in a form, i need the tooltip to show only if the user did not filled a specific field in the right way. It shows up only when a button is clicked and a validation is done.
The tip is shown by giving the field the focus again.
After that, each time the user move on the same field, the tip shows up again and it wuold be great if it is possible to break.
I did not find any "destroy" call.
My code:
//this is done after clicking on a botton, so it's no onmouseover triggered
var tmp = $("#trigger").tooltip();
$("#user_field_to_check").focus(); //this shows the tooltip
//suggestion:this would avoid the tooltip to show again
tmp.destroy();
Any idea how to break the tooltip from the input field?
thanks.
Roberto
in a form, i need the tooltip to show only if the user did not filled a specific field in the right way. It shows up only when a button is clicked and a validation is done.
The tip is shown by giving the field the focus again.
After that, each time the user move on the same field, the tip shows up again and it wuold be great if it is possible to break.
I did not find any "destroy" call.
My code:
//this is done after clicking on a botton, so it's no onmouseover triggered
var tmp = $("#trigger").tooltip();
$("#user_field_to_check").focus(); //this shows the tooltip
//suggestion:this would avoid the tooltip to show again
tmp.destroy();
Any idea how to break the tooltip from the input field?
thanks.
Roberto
