You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi,
i use bootstrap ajax in a project. now i need to use spinner for waiting user to load contents but i can't use this, please help me an send an example about this
thanks
The text was updated successfully, but these errors were encountered:
A simple way would be to set the CSS cursor property to 'progress':
$(document).on("eldarion-ajax:begin", function(evt, $el) {
$("body").css("cursor", "progress");
});
$(document).on("eldarion-ajax:complete", function(evt, $el) {
$("body").css("cursor", "pointer");
});
hi,
i use bootstrap ajax in a project. now i need to use spinner for waiting user to load contents but i can't use this, please help me an send an example about this
thanks
The text was updated successfully, but these errors were encountered: