Related questions
How to make JavaScript execute after page load?
I'm executing an external script, using a <script> inside <head>.
Now since the script executes before the page has loaded, I can't access the <body>, among other things. I'd like to execute some JavaScript …
How can I select an element by name with jQuery?
Have a table column I'm trying to expand and hide:
jQuery seems to hide the td elements when I select it by class but not by element's name.
For example, why does:
$(".bold").hide(); // selecting by class works
$("tcol1").hide(); // …