I'm looking for some JQuery tooltip plugin or even a simple solution to show a dynamic value from an input field when I mouse over a determined link (text or image)
I've tried a lot of plugins but none can give me the dynamic value of the field.
Example:
Input field:
input type="text" name="example" id="example" value=""
Link for mouseover/tooltip:
a href="#" id="tooltip">value</a
The value of the input field will be changed by another JQuery function and it's working fine, but when I try to show it's value using any tooltip plugin, doesn't work.
If I simple use the alert() function, it's working fine.
I don't need any fancy tooltip, only show the value of the input field.
Please, any solution?