jQuery verifique se o div tem um certo estilo

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