I have an order page where you select what type of products you want. For specific products, they have something call "specifications". When there's a button, it mean that there's specifications. If you click on it, a popover appear with a list of checkbox. This is working fine and without problem.
Now the problem I have is, when I click back again, the popover close (also ok) but the data doesn't save. I assume it does a copy from the content and cache it.
My question, is there a way to save the data when it close or use "live" data from a DIV within the popover ?
Thanks you.
EDIT:
What you want in the equipment list:
<div id="specs-1" class="hide">
<ul class="specs-group unstyled">
<li>...</li>
</ul>
</div>
<a href="#" rel="popover" data-original-title="Specifications" data-placement="top">S</a>
The content of the DIV goes in the POPOVER. Now, when the contnet change, I want it to reflect in the DIV.
Thanks.