<div style="background: url(absolute.gif)">
var a = document.all || document.getElementsByTagName('*'), i = a.length, c = []; while (i--) if (a[i].style.position == 'absolute') c.push(a[i]); // c — массив со всеми элементами с абсолютной позицией
... var pos = $('el').css('position'); ...
$('*').filter( function() { if ($(this).css('position') == 'absolute') return true; else return false; } ).css('color', 'red');