- Home
- Categorie
- Coding e Sistemistica
- Javascript & Framework
- Nascondere link della barra
-
Nascondere link della barra
Come da titolo,c'è qualche javascript che evita di mostrare il link nella barra in basso?:x
-
esempio:
<a href="http://www.yahoo.it" onmouseover="window.status=''; return true;">google</a>
-
@euler said:
esempio:
><a href="http://www.yahoo.it" onmouseover="window.status=''; return true;">google</a> >``` Con questo mi tocca modificare ogni link? :? Se sei,non ce n'è uno che valga per tutti? :x EDIT:L'ho trovato,e a chi possa interessare è questo,da mettere tra i tag <head></head>! > <script language="JavaScript" type="text/javascript"> //Visit rainbow.arch.scriptmania.com for this script and more //Hides all status bar messages function hidestatus(){ window.status='' return true } if (document.layers) document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT) document.onmouseover=hidestatus document.onmouseout=hidestatus </script>