Reason for doing that: I\'m debugging css of my webpage.. some elements appeared and they\'re not supposed to appear. I suspect it is the issue with element positioning.. th
This one is using jQuery. I hope you are find with it.
var find = $('*').filter(function () { return $(this).css('position') == 'fixed'; });
I think this one works using a pure javascript:
var elems = document.body.getElementsByTagName("*"); var len = elems.length for (var i=0;i