Subversion Repositories Applications.annuaire

Rev

Rev 301 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 301 Rev 428
Line 1... Line 1...
1
function verifierLongueurMax()
1
function verifierLongueurMax()
2
{
2
{
3
	max = $(this).attr('maxlength');
3
	max = $(this).attr('maxlength');
4
	if(max != undefined && max != null) {
4
	if(max != undefined && max != null) {
5
		$(this).val($(this).val().substring(0,max));
5
		$(this).val($(this).val().substring(0,max));
6
	}
6
	}
7
}
7
}
8
 
8
 
9
 
9
 
10
function initialiserTextAreaLongueursMax() { 
10
function initialiserTextAreaLongueursMax() { 
11
	$('textarea.annuaire').bind('keypress',verifierLongueurMax);
11
	$('textarea.annuaire').bind('keypress',verifierLongueurMax);
12
	$('textarea.annuaire').bind('keyup', verifierLongueurMax);
12
	$('textarea.annuaire').bind('keyup', verifierLongueurMax);
13
	$('textarea.annuaire').bind('blur', verifierLongueurMax);
13
	$('textarea.annuaire').bind('blur', verifierLongueurMax);
14
}
14
}
15
 
15
 
16
$(document).ready(initialiserTextAreaLongueursMax);
16
$(document).ready(initialiserTextAreaLongueursMax);
17
 
17