dynamoG
dynamoG

Reputation: 39

window.status not working

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

Answers (1)

Alexander Pavlov
Alexander Pavlov

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

Related Questions