I have an anchor tag like this:
<a id="1_18_shazin@mycompany.com" class="big-link" href="">4</a>
Now I am trying to replace the text with the following code
a = 1;
b = 18;
c = "shazin@mycompany.com";
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.