please download and add below files into solution
Jquery-ui.css
Jquery-UI.js
Jquery.min.js
add reference to your page and add below code into your page for getting tooltip
<script type="text/javascript">
//Initial bind
$(document).ready(function () {
BindControlEvents();
});
function BindControlEvents() {
//changing attribute title to Value
$('img').each(function () {
var $t = $(this);
$t.attr({
Value: $t.attr('title')
}).removeAttr('title');
});
$('input[type=text]').tooltip(); //binding tooltip to text box
$('img').tooltip(); //binding tooltip to Image
}
//Re-bind for callbacks
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function () {
BindControlEvents();
});
</script>
Jquery-ui.css
Jquery-UI.js
Jquery.min.js
add reference to your page and add below code into your page for getting tooltip
<script type="text/javascript">
//Initial bind
$(document).ready(function () {
BindControlEvents();
});
function BindControlEvents() {
//changing attribute title to Value
$('img').each(function () {
var $t = $(this);
$t.attr({
Value: $t.attr('title')
}).removeAttr('title');
});
$('input[type=text]').tooltip(); //binding tooltip to text box
$('img').tooltip(); //binding tooltip to Image
}
//Re-bind for callbacks
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function () {
BindControlEvents();
});
</script>