Untitled

 avatar
unknown
plain_text
7 months ago
182 B
1
Indexable
$('.order').click(function(e) {

let button = $(this);

if(!button.hasClass('animate')) { button.addClass('animate'); setTimeout(() { button.removeClass('animate'); }, 10000); }

});
Editor is loading...
Leave a Comment