Is it possible to add a div before div 1 in this code structure, even though the script is nested deep within other divs?
<div id="1">
<div id="2">
<div id="3">
<style>
#4 {...}
</style>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script>
$( "#4" ).before( $( "#1" ) );
</script>
</div>
</div>
</div>
Any insights on this are appreciated.