I am loading another page in one div using jQuery.Load("#divid","pageURL");
I have anchor tag on that anchor tag click I am calling jQuery.load("#divid","pageURL"); function this function takes time to load page in that div, so I want to show loading image and changing the cursor style.
Below is the code snippet which I am using currently. in script.js file I have written function like that
function loadReview(el) {
jQuery("#productName1").load(el);
return false;
}
and I have anchor tag inside .aspx page like that.
<a onclick='loadReview(\"" + strexternalURL + "\");' href='#productName1'></a>