Issue

How would i get my cursor to change to this loading icon when a function is called and how would i change it back to a normal cursor in javascript/jquery
Solution
In your jQuery use:
$("body").css("cursor", "progress");
and then back to normal again
$("body").css("cursor", "default");
Answered By - Stanley
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.