Hello, How can i make a JavaScript file write after the </title> tag, </head> tag, </body> tag, </body> tag, ect... I would like it to use "document.write("")" to write what i need it to write. Thanks Chris
Use jQuery and $('title').after('What to write') (to write after </title>) or $('title').before('What to write') (to write before<title>) or event $('title').append('What to write')
Use something like <script> /*Adds Stuff To The Title Of The Page*/ $("title").append( document.createTextNode(" | Title") ); /*Write's In The Head*/ $("head").append( document.write("") ); /*Write In Thoe Body*/ $("body").append( document.write("") ); </script> HTML: