Hey guys I using this to propagate JQuery tooltip using:
$(function() {
$( document ).tooltip({
position: {
my: "center bottom-20",
at: "center top",
using: function( position, feedback ) {
$( this ).css( position );
$( "<div>" )
.addClass( "arrow" )
.addClass( feedback.vertical )
.addClass( feedback.horizontal )
.appendTo( this );
}
}
});
});
I am including my scripts:
<script type="text/javascript"
src="jquery-latest.min.js">
</script>
<script type="text/javascript"
src="jquery-ui.js">
</script>
With no success it tells me: Uncaught TypeError: Object [object Object] has no method 'tooltip'
This has kinda stumped me because I don't know why it is saying this, when on my other pages it works great. Let me know if you have any idea!
Thanks :)
AWNSER:
Hey guys sorry, I just realized I was putting 2 copies of the include
<script type="text/javascript"
src="jquery-latest.min.js">
</script>
So it was canceling out my code.
Thanks though!
$(document).tooltip();? Also, have you verified thatjquery-ui.jsis loading (check the NET tab in Firebug, or similar for Chrome, Safari, IE8+)? – matthewpavkov Jan 22 at 6:02