If you work with AJAX and you change the HTML on the server, the new ajax call on client side will fetch you the new html code.
In AngularJS, I need to refresh the page to see the new changes, I cant simply change routes or use $scope.reload() and see the updated HTML.
But the problem is that I loose all my form fields (the $skope is reloaded) when I refresh the page.
I know I can save the scope in cookies or local-storage, I will probably use that in future, but right now, is there any way that I can re-render the html without reloading the page?