I am trying to add an HTML marquee element before the body element. I want to achieve this with javascript. I have searched all over for a way to do this but no success. Please help me.
One way I thought of doing it was
document.insertBefore('<marquee>', '<body>')
This gives me the error of
VM888:1 Uncaught TypeError: Failed to execute 'insertBefore' on 'Node': parameter 1 is not of type 'Node'.
Please help. Thank You!