Included Scripts
<script src="../../Scripts/jquery-ui-1.8.17.custom.min.js" type="text/javascript"></script>
Accordion Script
`
$(function () {
$("#accordion").accordion();
});
$("#tabs").tabs();
</script>`
Html
<div id="accordion">
<h3><a href="#">First header</a></h3>
<div>First content</div>
<h3><a href="#">Second header</a></h3>
<div>Second content</div>
Why i am getting this error???Object doesn’t support property or method ‘accordion
Updated
One thing i would like to mention is : my script is working fine with tabs
Try previous version of jquery
jquery-ui-1.7.3.custom.min.jsjquery-1.3.2.min.jsFor Accordion it works for me.
and if you also want to include tabs in your view then use latest release of jquery(you are using as of now)