I am trying to catch click events of all <font> tags if their parent element has .menuItem class name.
The trigger I made is looking like:
Click Classes matches CSS selector .menuItem > font
But it is not triggering. What is missing here?
I am trying to catch click events of all <font> tags if their parent element has .menuItem class name.
The trigger I made is looking like:
Click Classes matches CSS selector .menuItem > font
But it is not triggering. What is missing here?
Copyright © 2021 Jogjafile Inc.
It's not the
Click Classesthat match with a CSS selector, rather it's theClick Element. Also, your.menuItme > fontmeans that thefonttag needs to be a direct child of the classmenuItem.