I am new to Angular and would like to simply move an element when it is clicked to another div. How is the best way to do this?
<div ng-app>
<h1>First area</h1>
<ul>
<li ng-repeat="elem in elems">
{{ elem.elem_name }}
</li>
</ul>
<h1>Second Area</h1>
<ul>
<li>
</li>
</ul>
</div>
So given the example in my JS file how would I make it so when I click an elem it leaves the first area and appears in the second area?