qTip2 jquery with asp.net textbox

前端 未结 2 1669
挽巷
挽巷 2021-01-17 07:59

How can I implement jquery plugin qTip2 http://craigsworks.com/projects/qtip2/ with asp.net textbox? (elegant tooltip on mouseover)



        
2条回答
  •  情歌与酒
    2021-01-17 08:36

    You should wait for document ready:

    $(function () { //shorthand for $(document).ready(function(){...});
        $('tbLoginName').qtip({
            content: 'This is an active list element',
            show: 'mouseover',
            hide: 'mouseout'
        })
    });
    

提交回复
热议问题