How can I activate the :active state for non-anchor elements using JavaScript (jQuery)?
After reading through Section 5.11.3 of the W3C CSS2 specification in relation to the :hover pseudo selector in hopes of triggering the activation of an element, I stumbled upon the following information that suggested it might be achievable:
"The :active pseudo-class is applied while an element is being activated by the user. For instance, between the times the user presses the mouse button and releases it."
"CSS doesn't specify which elements can be in the states mentioned above, or how they transition in and out of those states. Scripting is capable of altering whether elements respond to user events, and different devices and browsers might have varied methods of indicating or activating elements."
Appreciate any help with this matter!