How can I say..
On Click .not.first() div
alert('Yeah you clicked a div which is not the first one!');
My actual code:
this.$('thumbnails').children().click(function() {
$('#video').animate({width: 164, height: 20, top: 475, marginLeft: 262},0)
$('.flv').animate({left: 2222, opacity: '0'},0).css('display', 'none')
$('.close').animate({opacity: '0'},0)
clicked = 0
});
There’s a
:gt()(greater-than-index) selector or.slice(1)(@bobince‘s preference :), your question translated literally would be:For your updated question:
Note the use of
.css(), if you want to make instant non-animated style changes, use this istead.