In my website, whenever a user types a command, a loading circle shows. The way this happens is with the jquery command
$("#load").show()
But the problem is that the loading circle bar only shows when I have a debugger and am looking at it in inspect. Here are some photos:

Then without the inspect element, the loading bar doesn't show. HELP PLEASSE!!!
I've seen this before. If you are doing too much processing in the browser, it never gets around to updating the UI. You need to show your loader in a different thread by spawing it either as a promise, or more simply, as a settimeout function with one millisecond.
setTimeout(() => { $("#load").show(); }, 1);