JavaScript
x
2
1
console.log($('"#'+d+'"'));
2
In my HTML, I have:
JavaScript
1
5
1
<div id="2013-10-23">
2
<h1>5</h1>
3
<p>eeeeeeeeeeee</p>
4
</div>
5
In the above code, I have one <div>
with an id
of 2013-10-23
, and when getting that id
it is throwing this syntax error:
JavaScript121Uncaught Error: Syntax error, unrecognized expression: "#2013-10-23"
2
Advertisement
Answer
try
JavaScript
1
2
1
console.log($("#"+d));
2
your solution is passing the double quotes as part of the string.