I have two divs with some 'deafult' content. When I click on link it changes html of that div. So I what to reset div html to initial content.
Example:
<a id="click1" href="#">Add</a><a id="click2" href="#">Reset</a>
<div id="click1_div">
<p>some text</p>
</div>
So when I click on Add jQuery will append some html, and when I click on Reset it should get back old html div content.
Any idea?