I am using a tooltip edit script that includes the following:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
<script>
(function($){
$(document).ready(function(){
$("a[title]").style_my_tooltips({
tip_follows_cursor: true,
tip_delay_time: 90,
tip_fade_speed: 600,
attribute: "title"
});
});
})(jQuery);
</script>
But, due to another script I am using, I need to use this version of jQuery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
Trying to use the 2.1.4 breaks the tooltips style. Help? I am super super new to jQuery and Javascript.