[JavaScript]HTML5 New Feature - Web Storage
<script> function OnLoad() { document.getElementById(“result”).innerHTML = checkWebStorageSupportable()?“Support”:“UnSupport”; }
function checkWebStorageSupportable() { return (typeof(Storage)!==“undefined”); } </script>