I want to remove a attribute in all the elements of the DOM. For example:
<div id="someId">
<div ng-model="aaa"></div>
<p ng-model="bbb"></p>
<span ng-model="ccc"></span>
</div>
I want to remove the ng-model attribute from all the elements which are inside the div with id as someId. Is there any way to do this using jquery.