I am using the fancybox plugin to open up an html file in the fancybox popup. How do I access the external html files width and height using javascript/jquery. My external html looks something like this:
<html>
<head>
<style type="text/css">
body {
width:500px;
height:500px;
background-color:red;
}
</style>
</head>
<body>
<p>TEXT_TEXT_TEXT</p>
</body>
</html>