Im beginning in jQuery / javascript and I would like to know if there's a better way to write what I did.
So, in my webpage, I have a list of thumbnails, when you mouseover a thumbnail, two options shows on top of that thumbnails (a "thumbs uo" icon and a "dislike" icon). When you mouseOut, the two icons disapears.
So here's what I came up with:
<ul>
<li class="videoBox recommended">
<div class="spacer" style="height: 18px; display: block;"></div>
<div class="features" style="display: none;">
<div><a class="like" href="#"></a></div>
<div><a class="dislike" href="#"></a></div>
</div>
<img src="thatsjustanexemple">
</li>
<li class="videoBox recommended">...</li>
<li class="videoBox recommended">...</li>
...
</ul>
Now my jQuery
$(function(e) {
$('#content .videoList ul li.videoBox .features').hide();
$('#content .videoList ul li.videoBox .spacer').show();
$('ul li.videoBox').hover(function() {
$(this).children(".spacer").hide();
$(this).children(".features").show();
}, function() {
$(this).children(".spacer").show();
$(this).children(".features").hide();
});
});
For me, the code feels really "newb". Someone can help? Oh and the spacer thing is there because I want to avoid the thumbnail to go 13px down on mouseEnter and go up 13px on mouseLeave...didnt find any other way of avoiding that.