Changing cursor to waiting in javascript/jquery

后端 未结 13 2066
孤街浪徒
孤街浪徒 2020-12-04 10:43

\"enter

How would i get my cursor to change to this loading icon when a function is ca

13条回答
  •  日久生厌
    2020-12-04 11:00

    If it saves too fast, try this:

    
    
     
    
    
    
    $('span.autosave').fadeIn("80");
    $('span.autosave').delay("400");
    $('span.autosave').fadeOut("80");
    

提交回复
热议问题