Can I concatenate two strings in HTML?
I want to achieve the following functionality-
<a href="#"+"javascript:document.getElementsByTagName('div')[0].id">go to the 1st DIV tag.</a>
It could have been done using document.write()
in javascript but I want to know if there is any concatenation functionality in HTML itself.