Showing 1 – 1 of 1 replies
maether

Is there any possibility to use a […]

maether PURCHASED
4 years ago
Hey friends,

is there any possibility to use a Spinner-Icon? I have a Button and wanna implement a Spinner after clicking it.

Cheers
rushenn
rushenn SELLER
4 years ago
Hi,

Yes, you can. You'll have to play a bit with Javascript in order to achieve this. You can bind a click event and include the spinner icon inside the button.

e.g:

$('button').click(function, {
$(this).html(spinner); // CSS or img spinner
});

Regards.