I have 3 different views, each of which share this same el value:
el:"<div id='main-inner'>"
and in the render function:
this.$el.html(html);
I was asked to combine all of these onto one page, so I'm trying to make a master view that has a collection of these views and renders each of the views within it. The problem is they each write to the same element, #main-inner and clear it's html before appending it's own html value. What is the proper way to change the el value before rendering from the master/wrapper view? Is this the best way to go about it?
Thanks!