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.
td
If you have something like:
You can read all like this:
jQuery("input[name='mycheckbox']").each(function() { console.log( this.value + ":" + this.checked ); });
The snippet: