/ Published in: JavaScript
Expand |
Embed | Plain Text
$(document).ready(function(){ $('.click').toggle(function(){ $(this).addClass('flip'); },function(){ $(this).removeClass('flip'); }); });
You need to login to post a comment.
simantic on 02/01/11
1 person have marked this snippet as a favorite
$(document).ready(function(){ $('.click').toggle(function(){ $(this).addClass('flip'); },function(){ $(this).removeClass('flip'); }); });
You need to login to post a comment.