Link to home
Start Free TrialLog in
Avatar of Whing Dela Cruz
Whing Dela CruzFlag for Anguilla

asked on

Html5 string

How to get the specific value of a string in textbox? for example; The value of an input="Gaisano"  i want only to get the letters "Gai" or the first letter of the word. i used this example but it doens't work.

                      var fieldLength = document.getElementById('myText').value.length;
                    var str = document.getElementById('myText').value;
                    str = str.substring(1, str.length + 5);
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Whing Dela Cruz

ASKER

It's working sir, thanks a lot!
You are welcome.