How Do I Hide The First Column In Jquery?
I have a jquery/ajax that loads data from a csv file. What I'm trying to do is automatically hide the first column as the data is loaded in jquery and ajax. I know you can do oncli
Solution 1:
You want to hide the ID column? Just ignore it in your loop and start with the second column:
for (var rowCell = 1; rowCell < rowCells.length; rowCell++) {
Post a Comment for "How Do I Hide The First Column In Jquery?"