I just started a new project File > ASP.NET MVC 4 Web Application > Internet Application
The problem i have is when I run the project it throws an error Uncaught TypeError: Object [object Object] has no method 'splitter'
I know what the error means but the plugin file for the SPLITTER is loaded correctly.
I then started the project in a folder without the aid of Visual Studio - same file stucture, same code, everything works as expected.
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="splitter.js"></script>
<script type="text/javascript">
$(function () {
$(".panel").splitter();
});
</script>
Am I missing something?