Is it possible to isolate parts of a page, so that each part can use a different javascript framework (or version).
For eample
<div id="content1">
Uses angular 1.5/jquery 1.x/etc
</div>
<div id="content2">
Uses angular 2/jquery 2.x/etc
</div>
<div id="content3">
Uses react/jquery 2/etc
</div>
Is it possible to isolate each snippet such that they don't interfere with each other regardless of what framework they use?
Obviously i could use iframes, but is there another solution?