What is run on this page:

zelph_onDOMload('li','theTarget.style.color="red";'); // example of just a tag
zelph_onDOMload('h3.blue','theTarget.style.color="blue";'); // example of a tag with a certain class
zelph_onDOMload('div#test10','doIt(theTarget);'); // example of a tag with an ID
zelph_onDOMload('div#test11 h2','theTarget.style.color="purple";'); // example of a tag within an ID only (notice other h2's aren't done)

Tests run on this page:

test h2.blue

test h3.blue

test h3.lightblue (checks for exactly "blue" not it being just part of a word)

test h3

test h3.blue

test h3

test h2

To prove it works before the onload, here is a 5 second pause server-side
div#test10 - green
div#test11

test h2 - purple

test h2 - purple