Hello, who can tell me please. There is the following code.
<img src="url" class="2-5 none(это класс display:none)" /> <div id="test"> <a href="#" class="2-5">Ссылка</a> </div>
how when clicking on a link to remove this class none? Thought to do so:
$("#test").children("a").click(function () { $(this) return false; });
And then I do not understand what is contained in this this? How to find an img element with the same class? In principle, I can manipulate all the code to change classes and id, etc. Tell me how best to implement it?