How do hide a column using JQuery?
Want to hide specifically two columns in a table using JQuery. The following code to do it:
$(".classname").hide();
But the thing is the same class name is used in all other columns in that table. So all the columns are getting hidden when I execute this JQuery.
Is there any other way to hide only those two columns?
|