Show a “Please Wait” Message or a Progress Bar while Files Download

可紊 提交于 2019-12-02 09:56:34

Try giving your button an ID like so:

<input type="submit" class="button" name="download" value="download" id="download" />

Also give your div an id like so:

<div class="notice notice-warning is-dismissible" id="download-div">

Then we can use a basic jQuery onClick function and change the 's innerhtml like so:

    $("#download").click(
         function () {
             $('#download-div').html("Please wait...");
         }            
     );
 });

Hopefully this helps :)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!