开发者

input tooltop plugin

开发者 https://www.devze.com 2023-03-06 03:37 出处:网络
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 wi

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).

0

精彩评论

暂无评论...
验证码 换一张
取 消