This problem seem to happen only in chrome This is the iframe code
<!DOCTYPE html>
<html>
<head>
<script>
function blahblah() { alert("test"); }
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Test Page</title>
</head>
<body>
<p> lalalalallalala!!! </p>
</body>
</html>
This is how I create the iframe
<iframe src="iframetest.html" id="iframetest"></iframe>
I then try to call the iframe's blahblah() function:
$('#iframetest')[0].contentWindow.blahblah()
But this doesn't work