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.

link|improve this question

2  
Your code could be shortened a little, but I don't think there's anything you can do to optimize it for performance. codereview.stackexchange.com is better suited for these types of questions. – Blazemonger Jan 5 at 19:12
It seems more a CSS issue (the move of the thumbnail). Can you provide something with jsfiddle ( jsfiddle.net )? – Sérgio Michels Jan 5 at 19:13
feedback

8 Answers

up vote 5 down vote accepted

You can do that with CSS only.

/*initial states*/
.videoBox .spacer{
    height: 18px; 
    display: block;
}
.videoBox .features{display:none;}

/*hover states*/
.videoBox:hover .spacer{display:none;}
.videoBox:hover .features{display:block;}

and skip the jQuery completely (and the inline styles)..

demo at http://jsfiddle.net/gaby/42ncE/3/


Update

After @quoo's comment and re-reading the question you can further minimize your code, to avoid the spacer, by using the visibility property instead of the display. (this way the element maintains its space in the layout but is not shown)

/*initial states*/
.videoBox .features{visibility:hidden;}

/*hover states*/
.videoBox:hover .features{visibility:visible;}

updated demo at http://jsfiddle.net/gaby/42ncE/4/

link|improve this answer
1  
I'd go further and ditch the spacer element entirely. it's not necessary. – quoo Jan 5 at 19:24
@quoo, its seems so from the example code, but it might be for some other reason we are not privy to .. – Gaby aka G. Petrioli Jan 5 at 19:27
1  
Per the question: "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." – quoo Jan 5 at 19:29
@quoo, damn .. i skipped that :) – Gaby aka G. Petrioli Jan 5 at 19:31
updated answer.. – Gaby aka G. Petrioli Jan 5 at 19:36
show 1 more comment
feedback

Depending on the versions of IE you need to support, I'd actually use css for this.

li.videoBox .features{
   width: 13px;
}
li.videoBox:hover .features{
   background-image: url(foo.png);
}

or whatever you're trying to do...

link|improve this answer
oh, and then you wouldn't need the spacer element which seems really unnecessary. – quoo Jan 5 at 19:18
feedback

You don't really need javascript there. Css will do just fine: demo

link|improve this answer
Wow!!! Many many positive votes for you..! – Umesh Jan 6 at 4:11
feedback

You can try:

$(this).find('.spacer, .features').toggle();

Help is here for toggle.

$(function(e) {
    $('#content .videoList ul li.videoBox').find('.spacer, .features').toggle();

    $('ul li.videoBox').hover(function() {
         $(this).find('.spacer, .features').toggle();
    }, function() {
         $(this).find('.spacer, .features').toggle();
    });
});
link|improve this answer
might you mean *toggle()? – paislee Jan 5 at 19:17
I like this answer based on what the OP wants to do. The CSS feedback also makes sense. – pixelbobby Jan 5 at 19:20
feedback

I'd go with a CSS solution instead: http://jsfiddle.net/Bz7Kd/1/

HTML

<ul>
  <li class="videoBox recommended">
      <div class="spacer" style="height: 18px;"></div>
      <div class="features">
           <div><a class="like" href="#">LIKE</a></div>
           <div><a class="dislike" href="#">DISLIKE</a></div>
      </div>
      <img src="http://lorempixel.com/output/animals-q-c-400-200-5.jpg">
   </li>
   <li class="videoBox recommended">...</li>
   <li class="videoBox recommended">...</li>
</ul>

CSS

.videoBox .features {
    display: none;
}

.videoBox:hover .spacer {
    display: none;
}

.videoBox:hover .features {
    display: block;
}
link|improve this answer
feedback

try ( jQuery v1.7)

$('li.videoBox').on( {
    mouseover : function() {
                $(this).find('div.spacer').hide();
                $(this).find('div.features').show();  
    },
    mouseout : function () {
                $(this).find('div.spacer').show();
                $(this).find('div.features').hide();
    }
});

Although I have changed html a bit, but you can see the logic in DEMO

link|improve this answer
feedback

I definitely recommend following the CSS advice of Gaby aka G. Petrioli:

/* this represents the "out state" */
.videoBox .spacer{
    height: 18px; 
    display: block; /* notice: display = block */
}
/* and display = none */
.videoBox .features{display:none;}

/* when you are CURRENTLY HOVERING, however, the display props switch */
.videoBox:hover .spacer{display:none;}
.videoBox:hover .features{display:block;}
/* once you have STOPPED hovering, they revert */

Although if you actually needed other things to work via JS, then your best bet is to use:

// based on the behavior above, it looks like #content .videoList     
// is superfluous.     
$(function(e) {
    $('ul li.videoBox').hover(function() {
         $(this).find('.spacer, .features').toggle();
    }, function() {
         $(this).find('.spacer, .features').toggle();
    // hover returns the current jQuery object. That means that you can just 
    // trigger the mouseout event and it will call the "out" function
    }).trigger("mouseout");
});
link|improve this answer
Can you avoid writing $(this).find('.spacer, .features').toggle(); two times ? – Umesh Jan 5 at 19:50
feedback

One Test effort to optimize your album :)

<html>
<html>
<head>
 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
 <style>
   li{list-style-type:none;} 
   .features{} span{margin-left:5px;}
 </style>
<script type="text/javascript">
$(function(e) {
            $('.dislike').parent().css('clear','both');
            $('ul li.videoBox').hover(function() {
                 $(this).find('.spacer, .features').toggle();                 
            }, function() {
                $(this).find('.spacer, .features').toggle();               
            }); 
        });
</script>
</head>
<body>
<ul>
  <li class="videoBox recommended">
      <div class="spacer" style="height: 25px; display:block;"></div>
      <div class="features" style="display: none; margin-left: 200px;">
           <span><a class="like" href="#"><img src="http://www.smallbuck.com/nashvillewebdesign/wp-content/uploads/2010/06/facebook_like_button_hand.jpg" width="20px" height="20px"/></a></span>
           <span><a class="dislike" href="#"><img src="http://profile.ak.fbcdn.net/hprofile-ak-snc4/23281_109608509085774_7622_q.jpg"  width="20px" height="20px"/></a></span>
      </div>
      <img src="http://www.golfbrowser.com/wp-content/uploads/101.jpg" width="320px" height="180px"/>
   </li>  
</ul>
</body>
</html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.