flexible .hide()
flexible .hide()
Hey,
i would like to hide some <tr></tr>'s when the DOM is ready:
- window.onload = function(){
- $('tr.nr39').hide();
- $('tr.nr41').hide();
- }
The problem is that i would like to hide all tr.nr, not only nr. 39 and 41, and i don't know how many it will be.
Is it possible to hide all <tr class="nr..."></tr> ?
THX,
Dominik