I want to Display images stored from another HTML page. Like: I have stored an image xxx.jpg from one page using
var Image = "xxx.jpg";
and then localStorage.setItem("Image Link",Image);
Now i want to retrieve stored image link as:
<a href="xxx.jpg">
How to do it. Please help me out.