Let's say I've decided to try and make a web application where the client is only html and javascript/jquery and I will fetch the data from a json service.
I come from the land of web forms and is now learning and loving mvc and here we have master pages and components like user controls and partial views etc, which enables us to re-use components and structure our code.
How do I do this when I'm using only html and javascript?
I've seen that jquery has the method load()
which loads data from the server. Is this the best approach to achieve what I want? Or is it something out there that I have missed?