I can call this function in jquery, always gives me this error.
Uncaught TypeError: Object [object Object] has no method ‘wijmenu’
The page with source is at the bottom
This is the wijmo version i used: https://github.com/wijmo/Wijmo-Open
heres my html code:
<div>
<ul id='ipodmenu'>
<li>
<h3>
Menu example</h3>
</li>
<li></li>
<li><a href='#'>CSS Library</a>
<ul>
<li><a href='www.google.pt'>Horizontal CSS Menus</a></li>
<li><a href='http://www.sapo.pt'>Vertical CSS Menus</a></li>
<li><a href='http://www.facebook.com'>Image CSS</a></li>
</ul>
</li>
<li><a href='#'>CSS Drive</a>
<ul>
<li><a href='#4'>Menu Gallery</a>
<ul>
<li><a href='#5'>Blue Color</a></li>
<li><a href='#6'>Green Color</a>
<ul>
<li><a href='#5'>Blue Color</a></li>
<li><a href='#6'>Green Color</a>
<ul>
<li><a href='#5'>Blue Color</a></li>
<li><a href='#6'>Green Color</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li><a href='www.microsoft.pt'>Web Design News</a></li>
</ul>
</li>
<li><a href='#'>JavaScript Kit</a>
<ul>
<li><a href='#8'>JavaScript tutorials</a></li>
<li><a href='#8'>JavaScript Reference</a></li>
<li><a href='#10'>DOM Reference</a></li>
</ul>
</li>
</ul>
<br style='clear: left' />
Here the script error

And this is the script list

The script list is all defined in the head seaction
<link type="text/css" rel="stylesheet" href="wijmoMenu\jquery-wijmo.css" charset="UTF-8" />
<link type="text/css" rel="stylesheet" href="wijmoMenu\jquery.wijmo.wijsuperpanel.css" charset="UTF-8" />
<link type="text/css" rel="stylesheet" href="wijmoMenu\jquery.wijmo.wijmenu.css" charset="UTF-8" />
<script type="text/javascript" src="wijmoMenu\jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="wijmoMenu\jquery-ui-1.8.23.custom.min.js"></script>
<script type="text/javascript" src="wijmoMenu\jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="wijmoMenu\jquery.bgiframe-2.1.3-pre.js"></script>
<script type="text/javascript" src="wijmoMenu\jquery.wijmo.wijutil.js"></script>
<script type="text/javascript" src="wijmoMenu\jquery.wijmo.wijsuperpanel.js"></script>
IpodMenu Webpage : Download
Based on the fact that you are using the http://github.com/wijmo/Wijmo-Open, then you need to include all files for the features that you wish to be using. In this case, you are using the wijmenu, so you need to include that source file:
jquery.wijmo.wijmenu.jsAdd this to your scripts list in the html, assuming the file is on your server:
<script type="text/javascript" src="wijmoMenu\jquery.wijmo.wijmenu.js"></script>