Corex
Самостоятельный JS вряд ли существует. Можно в попапе отключить статусбар или, в крайнем случае, показывать что-то другое в нём, хотя бы пустую строку.
Corex
C 7-й версии нельзя менять значение статуса если сайт не в интранет зоне:
Цитата:
IE7 no longer gives web sites access to manipulate the browser's status bar in the default security zone. This was done in the name of security as some malicious sites used the status bar to trick users. You can read all about the decision to remove access to the status bar here:
http://blogs.msdn.com/ie/archive/2007/02/13/Zones-and-Default-Settings.aspx
If you browse to a site that is in your Intranet Zone, calls to window.status -will- work.
Можно сделать так:
Код:
<script language="javascript">
function go(url)
{
window.location.href = url;
}
</script>
<a href="statusbar text: Some text to show" onClick="go('http://www.kg');return false;">My Link</a>
Не знаю, прокатит ли это для сиджа, т.к. все линки будут через JS.
Может есть какие-то нормальные способы/хаки, но пока не встречал...