Today i have created my first jQuery plugin and named it
hunkTooltip . This is a simple & lightweight plugin you do not need to add some more in html markup just u have to select the element with jQuery.
|
Tooltip plugin by husain saify |
html
To use this plugin you do not need any thing new in the html just the same markup like before just one thing is important title attribute the plugin fetch the text from the title and display it
Javascript
to use the hunkTooltip plugin you just need to select the element call the call $(element).hunkTooltip(); this function will attach the hunkTooltip plugin to that element
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.hunkTooltip.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('a').hunkTooltip(); //call the hunkTooltip plugin
});
</script>
No comments:
Post a Comment