Javescript to JQuery

Javescript to JQuery

Where can I find a detailed guide to figure out how to replace the javascript code to jquery?

I have an example:

  1. if(document.all) {
  2.    document.getElementById("id").innerText = myVariable;
  3.  }   else   {
  4.    document.getElementById("id").textContent = myVariable;
  5. }    
To start the replacement of document.all and then all other keywords

Thanks!