Showing posts with label Java Script. Show all posts
Showing posts with label Java Script. Show all posts

Wednesday, June 20, 2012

How to store and retrive json from localstorage.

localStorage only supports strings. Use JSON.stringify() and JSON.parse().

--save json in localstorage
var hash={};
localStorage['hash']=JSON.stringify(hash);

--retrive json from localstorage
var jsonObj=JSON.parse(localStorage['hash']);

Saturday, August 28, 2010

How to Show and Hide Div Using JavaScript?

Java Script Code

html Code
Step First 
        Step Second
    
This is Step Two Panel

Monday, August 23, 2010

How to access server control in javascript in asp .net ?

This is your Server Control

and this is JavaScript code to access asp .net server control in javascript