The easiest way is to just learn how to do DOM traversing and manipulation with the plain DOM api (you would propably probably call this: normal javascript)JavaScript).
This can however be a pain for some things. (which is why librarys libraries where invented in the first place).
Googling for "javascript DOM traversing/manipulation" should give plenty of helpfull helpful (and less helpfullhelpful) resources.
The articles on this website are pretty good: http://www.htmlgoodies.com/primers/jsp/
And as Nosredna points out in the comments: be sure to test in all browsers, because now jQuery won;t won't be handling the inconsistency's for you.
