$(document).ready(function() { $(':input[rel|=obligatoire]').parent().css('font-weight', 'bold'); $('#Texte').keyup(function(){ var n = $(this).val().length; t = $(this).val().substring(0, 16); if(t != "Y'a rien de tel ") { dummy = $(this).val(); t = dummy.substring(16, dummy.length); $(this).val("Y'a rien de tel " + t); } if(n > 300) { t = $(this).val().substring(0, 300); $(this).val(t); var n = $(this).val().length; } if(n > 1) { S = 's'; }else{ S = ''; } reste = 300-n; if(reste > 1) { Sr = 's'; }else{ Sr = ''; } texte = n+' caractère'+S + ' / reste '+reste+' caractère'+Sr; $('#nbrCar').html(texte); }); });