39

What is Session Storage under the Resources tab of Chrome's Developer Tools?

Sessions are a server-side feature and cannot be accessed from the front end.

One can use the Ctrl+shift+I shortcut to access the Developer Tools.

Willem Van Onsem
  • 443,496
  • 30
  • 428
  • 555
newday
  • 3,842
  • 10
  • 54
  • 79

2 Answers2

51

Guess its too late to answer but for anyone else, the session storage that is shown in chrome dev tools is HTML5 sessionStorage and not the server side Session.

stripathi
  • 766
  • 11
  • 23
  • 3
    The referenced page starts out with localStorage - sessionStorage is documented lower on the page. See Dominic Watson's answer. – Dan Pritts Mar 18 '15 at 14:56
6

For Chrome, version 59x, you go to the Applications tab in Chrome Developer Tools. It's for variables you can put into the client side javascript to persist it in that users session. I use it with Angularjs as in:

$window.sessionStorage.setItem("username", $scope.userLogin.username);

See the picture below:

enter image description here

James Drinkard
  • 15,342
  • 16
  • 114
  • 137