.innerhtml Doesn't Work Properly (i Guess)
I use .innerHTML to add text in textarea. But If I starting edit text in textarea by myself script stops working. Here it is: (function($){ addPort = function(name) { switch(na
Solution 1:
its just replace innerHTML
by value property
document.getElementById("codeArea").value
not innerHTML
Post a Comment for ".innerhtml Doesn't Work Properly (i Guess)"