hi i have a javascript variable which i need to insert into HTML like <p><a href="#">i am a link</a> for " + theNewVar + " sentence.</p>
can you help?
| SitePoint Sponsor |
hi i have a javascript variable which i need to insert into HTML like <p><a href="#">i am a link</a> for " + theNewVar + " sentence.</p>
can you help?


Code HTML4Strict:<p><a href="#">i am a link</a> for <span id="special"></span> sentence.</p>Code JavaScript:var span = document.getElementById("special"); span.appendChild(document.createTextNode(theNewVar));
Birnam wood is come to Dunsinane
Bookmarks