I am implementing a jstree in mvc4, but when I run my application no tree view is displayed. I have tried to track the error with Firebug and found the following error:
"TypeError: $(...).jstree is not a function $("#divtree").jstree();"
Follow the guide on https://github.com/vakata/jstree
<script src="/path/to/jstree.min.js"></script>
<script>
jQuery(function($) {
("#divtree").jstree();
});
</script>