In the script below, the .cluetip() function call results in "$(".tip").cluetip is not a function". I'm certain that the library is properly referenced b/c I can follow the link from the source. Also, the .click() function works fine. What am I missing? Many thanks!
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.cluetip.js")" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".tip").click(function () { alert('hi mom!'); }); // this works
$(".tip").cluetip(); // results in $(".tip").cluetip is not a function
});
</script>