Cómo almacenar el objeto en el almacenamiento de la sesión

Could you not 'stringify' your object...then use sessionStorage.setItem() to store that string representation of your object...then when you need it sessionStorage.getItem() and then use $.parseJSON() to get it back out?
Cooperative Cowfish