in attesa di capire se esiste la possibilità di fare la stessa cosa anche su FF, il workaround di cui parlavo era qualcosa del genere:
codice:$('#idTextbox').keyup(function(){ textValue = $(this).val() textLength = textValue.length; lastChar = textValue.substr(textLength-1,textLength); if(lastChar=='.') $(this).val(textValue.substr(0,textLength-1) + ","); });

Rispondi quotando
