dvtng / jss

JavaScript library for getting and setting CSS stylesheet rules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

storing selector in a variable doesn't seem to work

gabrie-ciprian-magda opened this issue · comments

I am not sure I am doing something wrong, but I try to store the selector name in a variable like this:
$target = $this.closest('.whatever').find('.' + $identifier);
and try to change it like this:
jss.set($target, { borderColor: "#whatever" });
but I get this error:

Uncaught TypeError: t.toLowerCase is not a function

Variable works fine.
Make sure variable shouldn't have an element, it must have selector text value only.