input tooltop plugin
I am looking for a plugin that displays something like tooltip that I can put html inside.
Something like a datepicker were I hav开发者_JAVA技巧e a little image that allows me to open a helper that will assist fill the input.Do you know such plugin?
jQuery Tooltip Plugin has worked well for me, including with forms:
$('#myImage').tooltip({
delay: 0,
showURL: false,
bodyHandler: function() {
return $("<form><!-- Add form contents here --></form>");
}
});
qTip is pretty good.
Only issue is you have to define the styles in the JavaScript (last time I used it at least).
精彩评论