I want to pass javascript object from one page to other page so anyone can tell me how to do it?
Is that possible to do so using jQuery?
If your application uses sessions, you could serialize it (as per other answers) then POST it to the server where it is stored in a session variable. In the next page, you retrieve it from the session variable.