Do you understand that with Angular you read and write to the model... never to the page? (aka Forget about jQuery)
Last updated by Brady Stroud [SSW] 7 months ago.See historyThe most common mistake that developers make when moving from jQuery to Angular is that they continue to think about updating the page.
A fundamental principal of Angular is that you build a Model in JavaScript (or TypeScript) and then on your view you just databind your UI elements to the model. Any changes that are made are made to the model and the view updates automatically.
In Angular, you do not interact with the page you update the model, and the page is just displaying a view of the model.
Further reading: http://stackoverflow.com/questions/14994391/thinking-in-angularjs-if-i-have-a-jquery-background