jQuery проверьте, есть ли у Div определенный стиль

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