hi ,
i am trying to add a label from javascript but im getting error
what i did was:
document.getElementById(option).innerHTML="<label onclick='updateInfo('edit','qualification',"+data_id+","+data+")>"+data+"</label>";
what am i doing wrong ?
|
|
hi , i am trying to add a label from javascript but im getting error what i did was:
what am i doing wrong ?
|
||||||
|
|
|
I think the error is with the quotes inside the function. You have to escape the quotes.
|
|||
|
|
|
|
Aside from the issues with innerHTML in general, you are:
|
||
|
|
|
|
The quotes are wrong. you've used single-quotes to quote the onclick value and it's contents.
|
||
|
|
|
|
Another way is to use document.createElement() and document.appendChild() to avoid the escaping. It also makes the code more readable.
|
||
|
|