Like us on Facebook and stand a chance to win pen drives!

Showing posts with label web storage. Show all posts
HTML5 Data Storage
HTML5 Data Storage



function supports_html5_storage() {
                try {
                    return 'sessionStorage' in window && window['sessionStorage'] !== null;
                } catch (e) {
                    return false;
                }
            }
            alert(supports_html5_storage());
Copyright © 2012 The Code Junction.