Skip to content

Instantly share code, notes, and snippets.

@skalnik
Created October 7, 2014 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skalnik/2f69478b435502357c81 to your computer and use it in GitHub Desktop.
Save skalnik/2f69478b435502357c81 to your computer and use it in GitHub Desktop.
Hidden IFrame Firefox Issue
<!DOCTYPE html>
<html>
<head>
<body>
<img id="img" style="max-width: 600px" src="https://render.githubusercontent.com/stormtroopocat.png">
<script type="text/javascript">
var element = document.getElementById('img');
var style = window.getComputedStyle(element);
console.log(style.getPropertyValue('max-width'));
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<iframe src="iframe.html" style="display: none">
Enable iframes please!
</iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment