Monday, July 6, 2015

What is the sessionStorage Object in html5 ? How to create and access ?



The sessionStorage object stores the data for one session. The data is deleted when the user closes the browser window. like below we can create and access a sessionStorage here we created "name" as session
<script type="text/javascript">
sessionStorage.name="PCDS";
document.write(sessionStorage.name);
</script>

No comments:

Post a Comment