I am using lightbox jquery.
HTML
<div id="light" class="white_content">
            <img id="closelightbox" src="Images/ExitButton.png" />
            <div id="player"></div>
        </div>
        <div id="fade" class="black_overlay">
        </div>
I am using following thing to load page
 $("#fade").show();
 $("#player").load("../Html/mypagename.html");
}
$("#light").show();
I have 2 pages : 1 Customer , 2 Product
How can I pass some value from the customer page to product page?
- Usercome to customer page, - -Customer Details With Product grid will be showed then - Clicking on something will Load Product Page, do something at Product page, again back to customer page and previously showed details on customer should be visible at that time.
 
 
     
     
    