I have the following code.
User fills and submits the first form. When he hits \"submit\" the data is stored in the db via websockets. At the same time , server ret
Does the following resolve the crashing behavior?
document.getElementById("source").value=" ";
document.getElementById("contr").value=" ";
document.getElementById("source").value="";
document.getElementById("contr").value="";
How about instead of setting the "contr" and "source" .value
property, try setting its .innerHTML
property. I don't know if this will make a difference but...