I have an anchor tag like this:
<a id="[email protected]" class="big-link" href="">4</a>
Now I am trying to replace the text with the following code
a = 1;
b = 18;
c = "[email protected]";
var tempId = "#"+a+"_"+b+"_"+c;
$(tempId).text("some text");
Thiis never works. I tried .html(), .append(). Looks like it never finds the ID. But it works if I call the event by class name.
$(".big-link").text("some text");
Any clue? Thanks in advance.