开发者

How To Display Tooltip for TextBox While Entering the Text in that in asp.net

How To Display T开发者_运维技巧ooltip for TextBox While Entering the Text in that in asp.net .


intially tooltip is display:none

$("input[id$=tbMyTextbox]").focus(function() {
   $("div[id$=tooltip]").show();
});

$("input[id$=tbMyTextbox]").blur(function() {
   $("div[id$=tooltip]").hide();
});

check this also works : http://craigsworks.com/projects/qtip/

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜