I am a starting JQTools enthousiast so this might be a very obvious/dumb question but I have a page with three (form) input fields using tooltips.
When the page is loaded focus is set to the first field using the following function:
The first field renders the tooltip as expected using this code:
And now the problem in reproducable steps:
1. fresh pageload shows the tooltip for field1 (good)
2. Now selecting field2 shows the tooltip for field2 but also keeps showing field1's tooltip (not good)
3.Selecting field1 and then field2 does make the tooltip for field1 disappear
Is there some method to make field1 to disappear while executing step2?
Any help is appreciated, keep up the good work!
When the page is loaded focus is set to the first field using the following function:
function setFocus(e){
jQuery('#' + e).focus();
}
The first field renders the tooltip as expected using this code:
$("form :input").tooltip({
position: "center right",
offset: [-2, 10],
effect: "fade",
opacity: 0.7
});
And now the problem in reproducable steps:
1. fresh pageload shows the tooltip for field1 (good)
2. Now selecting field2 shows the tooltip for field2 but also keeps showing field1's tooltip (not good)
3.Selecting field1 and then field2 does make the tooltip for field1 disappear
Is there some method to make field1 to disappear while executing step2?
Any help is appreciated, keep up the good work!
