I have a basic question, can i include HTML code in JS? (with \"document.write\")
This is my HTML code:
can I include HTML code in JS?
If by that you mean can you output HTML via javascript then the answer is yes e.g.
window.onload = function() { document.getElementById("menu").innerHTML = 'some text some text some text some text some text some text'; }