Loading image/spinner for Anchor tag:
<a class="bg-grey-btn" data-docnum="ABC-1201" href="javascript:void(0);" onclick="downloadAFile(this); return false;">Download Document </a> Loading image/spinner for Anchor tag: Method-1: const downloadAFile = async (e) => { try { const btnElement = $(e); const btnVal = btnElement.html(); //To add css-based spinner to the button text. //if (btnElement.html().indexOf("spinner") < 0) btnElement.html(' ' + btnVal); btnElement.data('original-html', btnVal); //...... //...... //logic for service call and response handle. //...... //...... if (btnElement) { btnElement.html(btnElement.data('original-html')); } } catch (err) { console.error("Download failed:", err); if (btnElement) { btnElement.html(btnElement.data('original-html')); } } }; Method-2: const downloadAFile = async (e) => { try { const btnElement ...