I'm trying to implement a jQuery Tooltip whenever I mouseOver a certain word in the wordcloud. The wordcloud references I'm using is [jQuery.awesomeCloud.plugin]:https://github.com/indyarmy/jQuery.awesomeCloud.plugin
Or is there any other way to add a tooltip hover over a word in using this jQuery wordcloud? Please assist me.
Thank You.
My codes as follows:
<!--jQuery ToolTip-->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script>
<!--Calling Tooltip function in jQuery-->
$(function() {
$("#age").tooltip();
});
<!--End-->
</script>
<!--End-->
<!--WordCLoud References-->
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>//Conflict with jQuery script above-->
<script src="jquery.awesomeCloud-0.2.min.js"></script>
<!--End-->
<div class="content">
<div id="wordcloud2" class="wordcloud">
<span id="age" data-weight="90"><a href="http://google.com" title="CAN YOU SEE ME">google</a></span>
</div>
I think is this one preventing me to pop out this tooltip
$("#wordcloud2").awesomeCloud({
"size" : {
"grid" : 9,
"factor" : 1
},
"options" : {
"color" : "random-dark",
"rotationRatio" : 0.35
},
"font" : "Impact",
"shape" : "square"
});
tryied with your code, it is working fine. google