How can I insert quotes in a string, anchor tag? I am adding link using tag in my application of node.js. It is not accepting.
How to overcome that? And what is the reason it doesn't accept that?
"<A HREF="index.html">";
How can I insert quotes in a string, anchor tag? I am adding link using tag in my application of node.js. It is not accepting.
How to overcome that? And what is the reason it doesn't accept that?
"<A HREF="index.html">";
You can escape quotes in string literals :
var s = "<A HREF=\"index.html\">";
Two methods are there
var s = '<A HREF="index.html">';
escape quotes in string literals :
var s = "<A HREF=\"index.html\">";