In my ASP.NET Core Code first project developed using ASP.NET Cor Web Application (.NET Core) template
how can I add, for example, following jQuery code on a specific view, say, test.cshtml
so that it is included only on a page using this view. I'm using VS2015-Update3.1
. Only those familiar with the folder structure of such a project in VS2015 can probably answer.
NOTE: I'm trying to add following script inline and not as a file.
$('.list-group-item').click(function(e){
e.stopPropagation();
})