[wd_asp elements=’search’ ratio=’100%’ id=1]

If Contains Class

20th February 2015

Jquery Misc

jquery icon

$( "div" ).click(function() {
if ( $( this ).hasClass( "protected" ) ) {
$( this )
.animate({ left: -10 })
.animate({ left: 10 })
.animate({ left: -10 })
.animate({ left: 10 })
.animate({ left: 0 });
}
});