>       What do you recommend to generate UUID with jQuery ?
>
>       Thank you !

I've been using something like this:

function uid() {
    var result='';
    for(var i=0; i<32; i++)
        result += Math.floor(Math.random()*16).toString(16).toUpperCase
();
    return result
}

Reply via email to