I’m using this line of code to include a plugin by FlowPlayer.org.
<script type="text/javacript" src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js"></script>
However, it’s not working; the following says undefined:
alert(jQuery().tooltip);
jQuery is included.
Anyone have any idea why?
"text/javacript"is not a valid value fortypeso the browser ignores the script. You need"text/javascript"or better yet, just omit the type attribute entirely.