That's the problem, there is a div
<div id="my">dfg <a href="fb.com">TEXTS1</a> asd dfg <a href="vk.com">TEXTS2</a> asd, dfg <a href="odkl.ru">TEXTS3</a> asd</div>
and there is jQuery code
$("#my a").hover( function () { $("#my a").addClass("thisc"); }, function () { $("#my a").removeClass("thisc"); } );
The fact is that if you aim the mouse at 1 tag "a", then everything shines, how to do it so that the cursor is only glowing (without reference to the attribute of the chref, that is, not to compare if the chref is equal to that; I realized that .each, but something doesn't work)?