// phobiazero: display number of chars below the msgbox | xltronic messageboard
 
You are not logged in!

F.A.Q
Log in

Register
  
 
  
 
Now online (1)
dariusgriffin
...and 496 guests

Last 5 registered
Oplandisks
nothingstar
N_loop
yipe
foxtrotromeo

Browse members...
  
 
Members 8025
Messages 2614205
Today 9
Topics 127548
  
 
Messageboard index
// phobiazero: display number of chars below the msgbox
 

offline Drunken Mastah from OPPERKLASSESVIN!!! (Norway) on 2005-01-15 17:32 [#01460886]
Points: 35867 Status: Lurker | Show recordbag



function charsLeft() {
var num = 10;
var inputField = document.forms[0].elements[0];
if(inputField.value.length > num) {
return window.alert('Too many characters!');
}
}

function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) {
field.value = field.value.substring(0, maxlimit);
}
else {
countfield.value = maxlimit - field.value.length;
}
}


Attached picture

 


Messageboard index