FrickenTrevor
01-19-2015, 03:41 AM
In one of my projects im using this tooltip plugin called aToolTip [GitHub] (https://github.com/ItsMeAra/aToolTip).
It's great however I do not want to have to call the plugin by adding
class="fixedTip"
to every single link in the page. It should be called using something like this:
<script>
$(function(){
$('document.body').aToolTip({
fixed: true
});
});
</script>
....
<a href="#" title="Hello, I am aToolTip">Normal Tooltip</a>
It's great however I do not want to have to call the plugin by adding
class="fixedTip"
to every single link in the page. It should be called using something like this:
<script>
$(function(){
$('document.body').aToolTip({
fixed: true
});
});
</script>
....
<a href="#" title="Hello, I am aToolTip">Normal Tooltip</a>