Recently, I embarked on the journey of learning Javascript and jQuery simultaneously, and to my surprise, it feels quite manageable.
As I delve deeper into creating functions, I am currently working on displaying a loading image. While I initially used one from , I now desire something more dynamic - perhaps an image that changes with each load...
On another note, there is an issue where my loading image sometimes appears beneath other elements without any apparent reason. I am determined to unravel this mystery and make sure it doesn't happen again. Any insights or tips would be greatly appreciated!
Below you can see my current setup:
...
<img id="loading" src="loading.gif" />
...
<script>
function load(){
$("#loading").fadeToggle();
}
</script>