passing particular json data to another page

passing particular json data to another page

In my project, I have a JSON  file. I display the data that is parsed inside a list (ul)  under a div with the class,   "inner", and show only the name and cost of each product that you can see in my JSON

  1. { "product": [ { "name": "samsung galaxy", "image": "https://rukminim1.flixcart.com/image/832/832/mobile/v/z/x/samsung-galaxy-on-nxt-sm-g610fzdgins-original-imaenkzvmnyf7sby.jpeg?q=70", "cost": "RS.10,000", "detail": "Flaunt your style with the Samsung Galaxy On Nxt. Featuring a drool-worthy body and impressive features, this smartphone is built to perform. Talk to your mom, chat with your friends, browse the Internet - stay connected the way that suits you best - this smartphone is powerful enough to keep up with your busy lifestyle." } ] }

When I click on the first product (first list item), I want to show the detail (value detail) of this product in another page from that same JSON  object; when I click on the second product, I want that to show in a different page too, but also from that same object.

  1. <html>
  2.     <head>
  3.         <title>jquery</title>
  4.     </head>
  5.     <body>
  6.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>

  7.             <script type="text/javascript">


  8. $.ajax({
  9.      url: 'http://sonsofthunderstudio.in/jj/product.json',
  10.      dataType: 'jsonp',
  11.      jsonpCallback: 'jsonCallback',
  12.      type: 'get',
  13.      crossDomain : true,
  14.      cache: false,
  15.      success: function(data) {
  16.         $(data.product).each(function(index, value) {
  17.             console.log(value);
  18.                 $( ".inner" ).append("<li>"+value.name+"<img src='" + value.image + "'  width='50px' height='50px' / >"+value.cost+"</li>");  
  19.         });
  20.      }
  21. });


  22. </script>


  23.         <div class="inner">
  24.         </div>
  25.     </body>
  26. </html>
Where can i go from here?