Livejournal
Log in
Post
Friends
My journal
vestimo
js
Oct 08, 2008 15:12
javascript tips:
str='abcd';
alert(str[0]) -> alerts 'a'
BUT NOT IN IE!!!
better to use: alert(str.charAt(0)) -> alerts 'a'
Leave a comment
Read comments 3
Previous post
Next post
Up