|
|
|
|
|
by TekMol
2945 days ago
|
|
When I see this: var formname = $(this).find('.formname');
formname.empty();
formname.append(n_input);
I think why not just use plain Javascript and do this: document.querySelector('.formname').innerHTML=n_input;
Coders that are attached to libraries and frameworks always seem so afraid to use the tech already available. That they don't even look at how the basic solution would look like. |
|