I getting any error on a I'm creating in my client side code. The issue seems to be coming from the "onclick" that I'm adding to the row. You can see the function below. Then underneath that is what the "this.clickvalue" actually equals that on the line that is giving me the "unterminated string literal" error.
51 var row = "<tr " + this.clickValue + ">"
52 for(i=0; i<this.count; i++) {
53
54 row += "<td>" + this.values[i] + "</td>";
55
56 }
57 row += "</tr>";
58
59 $(row).appendTo(tbl);
<tr onclick=detailDoc.openDocument('Technical Library')> //line 51 during walkthorugh
EDIT: Ok so it looks like I need that last line to eventually look like this:
<tr onclick="detailDoc.openDocument('Technical Library')">
So my now is how exactly do I do that. the "this.clickValue" is being created in a webservice and passed back to my JS function. The code looks like this:
string click = "onclick=detailDoc.openDocument('" + result.IPT_Name + "');";
Not sure how to get the quotes to go over with it.