I have created the variable
$divquallist like this...
let $divquallist = $("div.quallist");
but I can't figure our how to access the css property of all trs of the variable.
When I reference the element with jQuery , I can do this
$("div.quallist tr").css ("background","");
and it works the way I want it to.
But I'm at want to do the same thing using my variable.
$divquallist tr.css but I cant seem to get the syntax right.
Thanks