Rev 103 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
$(document).ready(function() {
// Bouton "fermer la fenêtre" car on est (normalement) dans un popup
$('button.fermer').click(function() {
window.close();
});
// Préremplissage du champ "navigateur"
$('input[name="navigateur"]').val(
window.navigator.appCodeName + ' ' + window.navigator.appVersion
);
// Préremplissage du champ "système"
$('input[name="systeme"]').val(window.navigator.platform);
});