m new to asp.net
i want to show a spinning wheel when some area of asp.net page get refreshed but not full page,
can any body tell me how to do this.
well thanx in advance...
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Joginder BangerPosted Nov 25, 2014, 8:04 AM
java script function
$(document).ready(function(){ $('#button').click(function(){ $('#load').show(); setTimeout(function() {$('#load').hide()}, 2000); }); });