Firend i am developing spotify application & according to their developers site i come to understand that i can use only HTML/HTML5 , javascript, css for development
Now i am having some question regarding development:
I am having multiple pages & for each page i am having certain input parameters & i want to track these parameter throughtout application
such as user name taken as input from user.
How can i do that ,
is there any kind of session management tool or something like that?
How can i process mydata from different page to show desired result.
Firend i am developing spotify application & according to their developers site i come
Share
As per the API Guidelines, you are able to take advantage of the
HTML localStorage API:Comprehensive documentation on how you can interact with
localStoragecan be found on MDC.It boils down to using
window.localStorage.setItem(key, value)andwindow.localStorage.getItem(key)to set and retrieve data.