Skip to content

Instantly share code, notes, and snippets.

@lvivski
lvivski / gist:1226565
Created September 19, 2011 14:06
Simple hover for images with links in description
(function ($) {
$('a').hover(function () {
if ($(this).attr('href') != '') {
$('a[href="' + $(this).attr('href') + '"]').addClass('hover')
}
}, function () {
$('a').removeClass('hover')
});
})(jQuery);
@lvivski
lvivski / slider.css
Created February 6, 2011 18:58
really simple js slider for lists
.list {
overflow:hidden;
height:100%;
}
.control {
position:absolute;
display:block;
width:35px;
height:35px;