Is it possible to use a dot in a classname inside Jquery?
$(\'.B.Avf\').toggle();
I need to keep the dot in: B.Avf classname. Can i som
You can always just use the [attr="val"] selector for this.
[attr="val"]
$('[class*="B.Avf"]')
The *= means "class contains...". Since this is looking at the attribute directly and there could be more than one class, you don't want to use =.
*=
class
=