I have two input boxes. Whatever typed in first input box should show in second, it is easy. But, If I typed something in second input box and try to display in first it doesn't work.
Here is code.
<div ng-app="">
<input type="text" ng-model="first" value={{second}}>
<input type="text" value={{first}} ng-model="second">
</div>
Is it not allowed in Angular?