Subversion Repositories Sites.tela-botanica.org

Rev

Rev 467 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 467 Rev 478
Line 30... Line 30...
30
// Provient du site https://addons.mozilla.org/
30
// Provient du site https://addons.mozilla.org/
31
function basculerTaille(id, grand)
31
function basculerTaille(id, grand)
32
{
32
{
33
	var sb = document.getElementById(id);
33
	var sb = document.getElementById(id);
34
	if (grand) {
34
	if (grand) {
35
		sb.style.width = '20em;';
35
		sb.style.width = '20em';
36
	} else {
36
	} else {
37
		sb.style.width = '10em;';
37
		sb.style.width = '10em';
38
	}
38
	}
39
}
39
}
Line 40... Line 40...
40
 
40
 
41
// Fonction nettoyant un champ de formulaire d'une chaine donnée...
41
// Fonction nettoyant un champ de formulaire d'une chaine donnée...