I want all links with class play
to show the one and only video element present in their container.
The simplified HTML looks like this:
<div>
<a class="play">Play</a>
<video>…</video>
</div>
And I'm thinking along these lines for the jQuery, but don't understand how to target an element inside of parent:
$('.play').click(function(e){
e.preventDefault();
var target = $(this).parent().$('video');
t.show();
})
You can use:
OR
BTW, your HTML is incorrect, it should be: