Hi everyone,
For a project that will let developers add their own Javascript applications, I need to limit scope of Javascript to a certain div
. For example, each developer will have access to their own div.
<div id="md5_of_a_salt_and_app_id">
<script>
/* This area should not be able to modify window element
* or other divs than parent one
*/
</script>
</div>
Is there such possibility?
Thanks in advance.