I have this:
table.append("<tr id='row_" + i + "'><td name='id'>" + "<a href='http://localhost:25429/FileCS.ashx?id='" + Data[i].id + " target='_blank'>" + Data[i].id + "</a></td>"
and send me as an answer:
<a href="http://localhost:25429/FileCS.ashx?id=" 8744="" target="_blank">8744</a>
I need to remove the double quote "
between ?id=" 8744
and the +""
between the target, so it looks like this:
<a href="http://localhost:25429/FileCS.ashx?id= 8744 target="_blank">8744</a>
could someone help me? thanks.