I usually work backend development, where a model is defined as an in-memory representation of either some database query operation or internal, pre-initialized data fields. It is processed by controller or service methods and passed to the view for the user.
I'm also very familiar with jQuery, but have been struggling with callback hell and managing event bindings. This has led to some major code bloat and other issues.
I'm looking to use Backbone for a project to resolve the issues with jQuery. However, in a front end web development context, what exactly is a model?
A model in front end is a group of html elements which are bind to data. For eg: An album container can be seen as a model based on the friend's profile you visit. A list of elements can be bind two way (model to data and data to model) without any explicit call to change the behavior of the html elements. Usage of javascript frameworks would avoid these explicit calls. For eg: if an html element (say a div which has photos and videos section) depends on the user profile you select. Then we can model all these photos and videos section as a single model bind to a user-name and load them into container accordingly.