Here is what I am trying to produce:
"<td>"+name+"<textarea>"+content+"</textarea></td>";
I know jQuery can escape using:
jQuery("<td>", name)
But how do you incorporate some html in addition to it?
Here is what I am trying to produce:
"<td>"+name+"<textarea>"+content+"</textarea></td>";
I know jQuery can escape using:
jQuery("<td>", name)
But how do you incorporate some html in addition to it?