How can I cycle through all the blurs in the DOM?

How can I cycle through all the blurs in the DOM?

I want to see each blur in the document.  I tried this as a simple test, but it doesn't seem to work:

      var cnt = 0;
     $('.blur').each(function(){
        cnt++;
        });
    alert("cnt="+cnt);