Can we store image in local storage and get the image from the storage. As We store number or string in local storage can we store image not path ? http://jsfiddle.net/sAH8w/
$(function(){
$('#save').click(function(){
alert('save')
localStorage.setItem("image", https://dl.dropboxusercontent.com/s/t2ywui846zp58ye/plus_minus_icons.png?m=);
})
$('#get').click(function(){
alert('get');
var image=localStorage.getItem("image");
})
})