i have a text box like this
<input class="form-textbox validate[required]" type="text" name="newvalue" id="newvalue" value="" size="15" />
I would like a link next to this box, when clicked generates a 8 character, alpha-numeric, one upper case character string and feeds into this text box.
currently i have this code to generate 8 character alpha-numeric string but no upper case in this, and i think it only works in php, i need something for html
substr(md5(rand(0, 1000000)), 0, 8);
What would be the javascript to do the above string generation and insertion when link is clicked in an html page?
echoto print in html – Anonymous Oct 24 '11 at 7:13