I have an inline piece of javascript like this:
<html>
<body
<script>test1</script>
</body>
</html>
There is an external js that is executed that appends a script below the inline script and over writes it, any thoughts on how to do that?
<html>
<body
<script>test1</script>
<script>externaltest1</script>
</body>
</html>