I like the slide jQuery effect, when you move a cursor on some of products
I am trying to do the same effect with the similar functionality with one difference – when I move a cursor on the box, I wanna display the new DIV with informations (that’s working me), but I would like to display it as a slide from bottom to top, exactly as is on the link address.
$('div.box_data').hover( function() {
$(this).find('div.box_data_info').toggle();
});
How could I add the slide effect?
See at http://jsfiddle.net/ePSdq/
html.
css
js.