Hi masters,
Im having trouble with my code here. It has an error of missing ) after argument list.
Any amazing programmer that can help me on this.
here is the part of my code:
the error refers to this line:
I think it is a syntax issue. kindly help me up guys, please.
Thanks a lot!
Im having trouble with my code here. It has an error of missing ) after argument list.
Any amazing programmer that can help me on this.
here is the part of my code:
Code:
buff.append("<tr id="+strChapter+"><td width='15%'><div align='center'>"+strChapter+"</div></td>" +
"<td width='70%'><div align='center'><form name="+strChapter+"><textarea cols='66' rows='3' name='message' style='font-family: Verdana; font-size: 8pt;' >"+strMessage+"</textarea></form></div></td><td width='15%'><div align='center'>" +
"<input type='submit' style='font-family: Verdana; font-size: 10px;' name='delete' value='DELETE' onclick='deleteContent("+strChapter+");hideRow("+strChapter+");'>" +
[B]"<input type='submit' style='font-family: Verdana; font-size: 10px;' name='update' value='UPDATE' onclick='updateContent(document."+strChapter+".message.value,"+strChapter+")'>" +[/B]
"</div></td></tr>");
Code:
"<input type='submit' style='font-family: Verdana; font-size: 10px;' name='update' value='UPDATE' onclick='updateContent(document."+strChapter+".message.value,"+strChapter+")'>" +
Thanks a lot!
Comment