Hello, I need a script that will be added after </body> and will be displayed at the top of the page.
I know is posible, I have one :
<script type="text/javascript">
var object = document.createElement('div');
object.innerHTML = 'The banner script is HERE';
var body = document.getElementsByTagName('body')[0];
body.insertBefore(object, body.firstChild);
</script>
The problem with this cod is that is shows in forum phpbb3 in the login page and after is loged in twice in the header.
Can someone help me here ?
Kind regards.