Would I have to check a css property with jquery or pure js?
Note: Using is (': visible') is not feasible for what I need.
Example:
var display = $('.test').get('display').val()
if(display == 'block')
{
alert('block');
}