Generate random characters
by greatCar
HTML
<div id="mySpan">
</div>
JavaScript
//alert(Math.random().toString(36).substr(2, 4));
document.getElementById("mySpan").innerHTML=Math.random().toString(36).substr(2, 4);
by greatCar
<div id="mySpan">
</div>
//alert(Math.random().toString(36).substr(2, 4));
document.getElementById("mySpan").innerHTML=Math.random().toString(36).substr(2, 4);