I have a simple class to append a content.html file when MyClass.display() is called.
class MyClass
@display: (display) ->
$.get 'content.html', (data) ->
$('body').append data
The code above always append the data to the end of the body.
The HTML code is simply this
<html>
<head></head>
<body>
<p>text before</p>
<script src="file.js" type="text/javascript"></script>
<script type="text/javascript">
MyClass.display();
</script>
<p>text after</p>
</body>
</html>
I'm wondering how it is possible to append the data just after the enclosing </script> tag that triggered the function. That would in between the </script> and the following <p> tag.
One requirement is that I should not modify the HTML markup. I can not add IDs directly to markup as proposed in one of the answers below.
I know this is possible because I can see it in the Google AdSense code. But since their javascript code seems encrypted I can't decode how its done.
Any idea how to achieve this?
content.htmlto the<script>or replace the<script>or go between the<script>and the<p>text after</p>? – mu is too short Nov 20 '12 at 7:00content.htmlshould be added immediately following the enclosing</script>. – Martin Nov 20 '12 at 7:03