Untitled

 avatar
unknown
plain_text
5 months ago
182 B
0
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