jQuery verifique si div tiene un cierto estilo

if ($('#yourElement').css('position') == 'absolute')
{
   // true
}
Geeky Bravo