devxlogo

Quick Way to Count the Number of Angular Watches

Add a new bookmark in your browser with the URL set to the script below. Now, on any Angular page, if you click on the bookmark link, it will execute the following script and show you the number of watches on the page.

javascript: (function () {    var totalWatches, scopeElements, scope, i, totalElements; totalWatches = 0;    scopeElements = document.querySelectorAll('.ng-scope');    for (i = 0, totalElements = scopeElements.length; i      {        scope = angular.element(scopeElements[i]).scope();        if (scope != null && scope.$$watchers != null)        {            totalWatches += scope.$$watchers.length;        }    }    alert('Total number of watches on this page is : ' + totalWatches);})(); 

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.