Yottagray
Yottagray

Reputation: 2592

Remove Chrome Loading Notification?

I am working on a project that runs in Chrome in full-screen mode and displays data that can be edited and interacted with. It makes AJAX calls(using jQuery) frequently that cause a loading notification in the lower left-hand corner on the bottom of the screen to pop up.

These notifications are distracting when you are viewing the display and I would like to remove/prevent Chrome from displaying these loading notifications at all. Is it possible to prevent these notification by any means, or perhaps even mask the javascript that causes these notifications?

Upvotes: 3

Views: 3242

Answers (3)

Eli Grey
Eli Grey

Reputation: 35895

Do the requests in a web worker thread.

Upvotes: 4

Kranu
Kranu

Reputation: 2567

If this is just a simple web page, there is no way to do so. As Dave stated, the notification is part of Google Chrome.

If it is absolutely necessary for this to not appear, you can create a Google Chrome Extension that users can install. Then, you can make the AJAX requests from the extension background page, and the status bar will not popup. However, this is not very user friendly and quite unpractical.

Upvotes: 1

Dave Child
Dave Child

Reputation: 7901

I wouldn't have thought so - those notifications are part of Chrome itself, not the web page. It might be possible for the user to disable the status bar, but that would be part of the browser settings rather than the page.

Upvotes: 0

Related Questions