Demo of Destroy method of tooltip



This method does not accept any arguments.

Place the mouse over the input box to display the tooltip. Click the Destory Tooltip button to remove funcitinality, then check the tooltip by placing the mouse over the input box. Refresh and try again.

jquery

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