hi, im currently doing a ajax dropdown list whereby after selecting the main category it will load the sub category.
however, occasionally the loading of sub category takes a long time. how do i indicate to user that it is loading n pls wait. i saw some web page they use the animated loading gif. but how should i implement it?
Create an indicator area next to the dropdown:
<font id=indicator></font>
when"onchange" happens, lets put the animated gif source code next to the dropdown, like:
document.getElementById("indicator").innerHTML="img source code";
hello, jjozsi.