I am looking to retrieve the HTML page as a string after AngularJS has finished rendering the template. My goal is to send this content to the server.
.controller('MyCtrl', ['$scope', '$location', function ( $scope, $location) {
// 1- Retrieve the current HTML content of the webpage
// 2- Send it to the server
}])
Any assistance you can provide would be greatly appreciated!