Page is a not externally linkable
JAB_Creations - 7:52 pm on Oct 25, 2012 (gmt 0)
Don't use jQuery or any other frameworks, they're not real code, they'll lead you as far away from writing real code and you'll end up having no comprehension over what you're trying to do. Figure out how the DOM works in conjunction with JavaScript.
function setstylebyid(i,p,v) {var n = document.getElementById(i); if (n != null) {n.style[p] = v;}}
- John