jquery check if div has css value code example
Example: jquery check if div has a certain style
if ($('#yourElement').css('position') == 'absolute')
{
// true
}
if ($('#yourElement').css('position') == 'absolute')
{
// true
}