sir can u help me with this..
<html>
<script language="javascript" type="text/javascript">
function randomString() {
var chars ="";
var string_length = 4;
var randomstring = '';
for (var i=0; i<string_length; i++)
{
var rnum = Math.floor(Math.random() * chars.length);
randomstring += chars.substring(rnum,rnum+1);
}
document.randform.randomfield.value = randomstring;
}
</script>
<form name="randform">
<input type="button" value="Create Random String" onClick="randomString();">
<input type="text" name="randomfield" value="">
</form>
</html>
if i type any random word in textbox then wen i click the button the word well shuffle.
[ATTACH]15985[/ATTACH]
can u send me the code plzzz...............
The attachments of this post were removed during the platform migration in 2018