Occuper la totalité de la page

Souvent votre page est conseillée par un internaute qui utilise les "frames" et a oublié de la mettre avec la balise TARGET="_top", Votre page apparait alors à l'intérieur d'une de ses "frames", pour éviter ce problème désagréable, insérez systématiquement l'instruction suivante :
<SCRIPT> <!-- if (self!=top) top.location.href=self.location.href; //--> </SCRIPT>

Afficher la date de la mise à jour d'une page


Résultat :

Code source :

<SCRIPT LANGUAGE="JavaScript">
<!-- cacher ce code pour les anciens browsers
var madate = new Date(document.lastModified);
document.write("<b>"+
"Last update / Dernière mise à jour : </b><FONT COLOR='Red'>"+
madate.getDate() +"/"+(madate.getMonth()+1) + "/"+madate.getYear()+"</FONT>");
// done hiding from old browsers -->
</SCRIPT>


Afficher des images sélectionnées dans une liste


Résultat :



Appel :

<FORM NAME="previewForm"> <CENTER> <select NAME="imagename"> <option value="m_at1.gif">E-Mail : Symbole at anim&eacute; de D &agrave; G <option value="m_at.gif">E-Mail : Symbole at anim&eacute; de H en bas <option value="ink.gif">E-Mail : plume &eacute;crivant e-mail <option value="envel.gif">E-Mail : enveloppe anim&eacute;e <option value="email7.gif">E-Mail : enveloppe avec e-mail anim&eacute; </select> <input type=button value="Voir l'image / View picture" onClick="display_image(this.form)"> <br><br> </CENTER> </FORM>

Code source :

// An Animation JavaScript Gallery // by Jason Katonica parts of code done by paul colton function select_item(name, value) { this.name = name; this.value = value; } function get_selection(select_object) { contents = new select_item(); for(var i=0;i<select_object.options.length;i++) if(select_object.options[i].selected == true) { contents.name = select_object.options[i].text; contents.value = select_object.options[i].value; } return contents; } function display_image(formfield) { selection = get_selection(formfield.imagename); myWindow = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=350,height=500"); myWindow.document.open(); myWindow.document.write("<HTML><HEAD>"); myWindow.document.write("<TITLE>Visualisation / Preview</TITLE>"); myWindow.document.write("</HEAD><BODY TEXT='#000000' BACKGROUND='fond02.gif'>"); myWindow.document.write("<FORM><CENTER><B><FONT SIZE=+1>" + selection.name + "</FONT></B><HR>"); myWindow.document.write("<IMG HSPACE=0 VSPACE=0 " + // SET THE FOLLOWING ADDRESS TO YOUR MACHINE "SRC='" + selection.value + "'>"); myWindow.document.write("<HR><FONT COLOR=BLACK>" + "Fermez cette fen&ecirc;tre avant tout autre affichage d'image ! <br>Close Window before selecting next animation.</FONT> "); myWindow.document.write("</CENTER>"); myWindow.document.write("</BODY></HTML>"); myWindow.document.close(); }


Index