Forgive me for my lack of MVC knowledge - still in the process of teaching myself.
Basically started a new job which they primarily use MVC, learning curve is steep. Iv'e been tasked with calling a Javascript file when required in a nested partial view, Whilst I'm comfortable with the former, I seem to be having trouble with loading the script. I've tried sections
which didn't work to well and I believe cannot be done.
So I have:
Index.cshtml
> Loads in AddressList.cshtml
> which loads in Address.cshtml
When the address.chtml partial view
has been loaded, I'd like to load the js file.
<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?sensor=false'></script>
This is very trivial to some but never the less cannot seem to get it to work.
The task at hand is part of a much larger feature which I've built and works great when loading the js file in the main layout view
. Circumstances have changed and now the js file needs to be moved.
Any help greatly appreciated.