开发者

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

开发者 https://www.devze.com 2023-01-03 23:48 出处:网络
How To DisplayT开发者_运维技巧ooltip forTextBox While Entering the Text in that in asp.net .intially tooltip is display:none

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

精彩评论

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