views:

378

answers:

0

Hello!

I'm developing an ASP.NET application with C# and Ajax.

I have a login page and a page with a treeview on left, and a place on the right to load my own custom user controls. These controls are basically forms with some input fields to fill.

I use jQuery Input Floating Hint Box 1.1 to show a tooltip on the left of inputs fields.

I notice if I unload a user control from page (using AJAX and ASP.NET UpdatePanel) the divs generated to show tooltips doesn't dissapear from page and this plugin generates a new ones.

I don't know so much about jQuery but, if there is a way to link input fields and divs generated it must be a way to remove this divs generated.

Where I can find the link between input field and these tooltips div?

I guess I could check if they are created to reuse them. Or maybe delete them when I unload my custom user controls.

I've downloaded the plugin here: http://plugins.jquery.com/project/floating_hint_box

Any advice?