Where can I find a detailed guide to figure out how to replace the javascript code to jquery?
I have an example:
- if(document.all) {
- document.getElementById("id").innerText = myVariable;
- } else {
- document.getElementById("id").textContent = myVariable;
- }
To start the replacement of
document.all and then all other keywords
Thanks!