Reputation: 39
I have written a javascript for chaging the status of the browser in case of ajax call requests. This works in local but later when it is deployed into some other website, it is not reflected in it.
The script used is
window.status='Processing..';
Upvotes: 0
Views: 2623
Reputation: 32306
window.status modification may be disabled by default on most browsers due to security considerations - consider this:
<a href="http://imac001hacker.net" onmouseover='window.status="http://whitehouse.gov"' onmouseout='window.status=""'>Visit the White House home page!</a>
Upvotes: 4