Select all tables having a class jQuery -
i tried:
$("table .person-row") but selected elements under table class person-row.
i need select table class person-row.
try this:
$("table.person-row") no spaces needed between table , class name .
Comments
Post a Comment