Here is the Coding for Jquery Tooltip and buttons.Buttons will be displayed as Jquery buttons and when mouse is hovered on the buttons Jquery tooltip is displayed with slideDown effect and delay of 350 milliseconds.
$(function(){
$("input[type=button]").button(); //This applies Jqeury buttons for input type fields of type buttons
$("input[type=button]").tooltip(); //This applies Jquery tooltip for input type fields of type buttons
$('.classname').tooltip({show: {
effect: "slideDown",
delay: 350
}
}); //This applies Jquery tooltip animation effects for input fields with class as classname
});
Include the above coding in <script> tag
<input type="button" value="Hover" title="You got">
<input type="button" class="classname" value="Animation tooltip" title="Awesome Tooltip with some delay and animation">
Include the above coding in body tag
java computer programming examples for novices
ReplyDeletejava example code - Drawing Shapes in Java