Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Come posso tutelare i browser che non supportano i frame?

Come posso tutelare i browser che non supportano i frame?

Come posso tutelare i browser che non supportano i frame?

Link copiato negli appunti

Devi prevedere un messaggio di avviso che appaia agli utenti che utilizzano broser obsoleti. Cio’ avviene attravers il tag noframes:

<html>
<head>
<title>esempio</title>
</head>
<frameset cols=”60%,*”>
<frame name=”sinistra” src=”01.htm”>
<frame name=”destra” src=”02.htm”>
<noframes>
attenzione, il tuo browser non supporta i frame. <a href=”destra.htm”>clicca qui per la versione senza frame</a>
</noframes>
</frameset>
</html>