How do I generate a random string that is only 8 characters long, that will not occur twice in jQuery.
feedback
|
|
Why not just use the current time (as an integer)? | |||||||
feedback
|
|
try this code ,
| |||||
feedback
|
|
This will generate the desired range of random numbers and keep a history of previously generated numbers so it will never generate the same number twice:
Working demonstration here: http://jsfiddle.net/jfriend00/ZfKmk/ | |||||||
feedback
|
|
I think this is exactly what you're asking for. At any time in your code, you can ask for a random, 8-character string via
This fiddle will generate 10 random items for you. | |||
|
feedback
|
|
If you mean won't occur twice anywhere (meaning, on other people's computers, or in different browsers on the client's computer) then the short answer is, in pure javascript that's simply not possible, since that relies on getting a user's network SSID to use as a key, and javascript doesn't have access to that. If you mean a random number that won't repeat on the user's client over some period of days (or until they clear their cookies), then grab a random number, take 8 digits from it and put it in a cookie. Then test against that cookie when you get the next number (and store that as well). That guarantees a unique number for that user, in that browser. If you mean won't repeat simply in a given session, then jfriend's answer is your best bet. | ||||
|
feedback
|