Demo of disable method of Tooltip





This method does not accept any arguments.

By clicking the disable Tooltip button you can disable the tooltip. You can show again by Refreshing the page. Place the mouse over the input box before and after clicking the Disable button.

jquery

<script>
$(document).ready(function() {	
/////////
$( "#my_tooltip" ).tooltip({
});
///////
$('#b1').click(function(){
$( "#my_tooltip" ).tooltip( "disable" );
})
///
})
</script>