12 lines
No EOL
322 B
HTML
12 lines
No EOL
322 B
HTML
<!-- Like button -->
|
|
<script>
|
|
$("i").click(function(){
|
|
if ($(this).attr("red") == 'true'){
|
|
$(this).animate({color:"#808080"});
|
|
$(this).attr("red", false);
|
|
} else {
|
|
$(this).animate({color:"#ff0000"});
|
|
$(this).attr("red", true);
|
|
}
|
|
});
|
|
</script> |