#Select input field

7 messages · Page 1 of 1 (latest)

civic crypt
#

Localstorage is just that...local. You can't access what's stored on one domain from another.

#

If it's within the same domain then you just serialize and deserialize via the key.

queen elbow
#

No i meant i have two web pages for example index.html and form.html. Wel i stored a input that has users 1-4 in an array, but i want to show these users in a dropdown so how do i do that

#

I am trying to figure it out but im a complete noob to coding and use too much chat gpt

umbral abyss
#

How did you store them? Typically read the JSON string from localStorage, parse it (it’s an array, right?), then loop through it to create/append the options.

queen elbow
#

I stored by making a Const UsersInput [user1, 2 3 4] and eventually saving them with local storage save item

#

but i made this with help of chat gpt im trying to stop doing that and im trying to write my own code