javascript - .menu() is not a function; jQuery upgrade -
i migrating menu widget jquery 1.6.4 newer version of jquery , 1.11.1
$(document).ready(function () { $('#takemetolink').menu({ content: $('#globalcontent1').html(), flyout: false }); });
markup
<a id="takemetolink" href="#" style="color:black"> take me <span style="height:3px;width:15px;position:relative;display:inline-block;overflow:hidden;" class="s4-clust ms-viewselector-arrow"> <img src="/_layouts/15/images/fgimg.png" alt="open menu" style="border-width:0px;position:absolute;left:-0px !important;top:-491px !important;" /></span> </a>
when replace .js file new one, throws exception
uncaught typeerror: $(...).menu not function
is there new function available?
.menu() jquery ui "widget", means need include jquery ui.
here's script , stylesheet on google's cdn should include jquery script(feel free download if that's easier):
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css"> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
here's documentation: https://jqueryui.com/menu/
here's example of how use it: http://jsfiddle.net/fwbne/1/
Comments
Post a Comment