I'm trying to debug a site on iPad. On desktop an element shows, on iPad it's missing.
Question:
Is there a way to output all CSS in one statement similar to
console.log( $('element').attr('class') );
or is the only way to find the faulty property to go through all CSS-rules one by one?
console.log( $('element').css('position') )
console.log( $('element').css('top') )
console.log( $('element').css('left') )
console.log( $('element').css('right') )
console.log( $('element').css('bottom') )
console.log( $('element').css('width') )
console.log( $('element').css('height') )
console.log( $('element').css('display') )
... you get the point...
Thanks for input