jQuery überprüfen, ob Div einen bestimmten Stil hat

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