Fixed Can I use non existing CSS classes? #dev #it #asnwer
Fixed Can I use non existing CSS classes? #dev #it #asnwer
Can I use non existing CSS classes?
I have a table where I show/hide a full column by jQuery via a CSS class that doesn’t exist:
<table> <thead> <tr> <th></th> <th class="target"></th> <th></th> </tr> </thead> <tbody> <tr> <td></td> <td class="target"></td> <td></td> </tr> <tr> <td></td> <td class="target"></td> <td></td> </tr> </tbody> </table>
With this DOM I can do this in one line via…
View On WordPress












