I have a simple problem which I am unable to solve. I just started my new .NET MVC5 project in Visual Studio 2015 and I wish to use jquery DataTables. I used NuGet to install jquery.datatables by Allan Jardine. Now that I did that, i see those datatables in references, but not in wwwroot folder. In my wwwroot folder I have bootstrap which works fine. I used the same thing in MVC4, but there are Script folders and Bundles, which don't exist in MVC5.
How can I use my installed DataTables?
My script.js is like this:
alert('a');
$('#prvi').DataTable();
And alert is triggered, but on console view in Chrome, .DataTable() is shown as invalid.
In my _Layout.cshtml I'm referencing to:
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.11/css/jquery.dataTables.min.css">
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.11/js/jquery.dataTables.min.js"></script>
I am completely new to MVC5 so I guess this is really trivial issue. Still, I'd really appreciate your help.