When I\'m debugging a site, sometimes the hovered selectors are a little long winded and similar to other ones, is there a way to apply a kind of \"sticky\" state to hover r
Sometimes items are not affected by the ":hover" state but by a mouseover in jQuery or similar, in that case you can manualy trigger the event (or force the event) in the console tab by writing:
$('#a-random-selector').mouseover()
Hope it helps, I came here looking for this answer but had to figure it out myself