Skip to content

Instantly share code, notes, and snippets.

@brainwipe
Created November 26, 2013 11:11
Show Gist options
  • Save brainwipe/7656712 to your computer and use it in GitHub Desktop.
Save brainwipe/7656712 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
var iframe = $('#frame');
$("#frame").ready(function(){
$("#frame").load(function () {
data = iframe[0].contentWindow.document.body.innerHTML;
if(data == "success"){
console.log("success");
}
});
});
});
</script>
</head>
<body>
<iframe id="frame" name="frame" width="0px" height="0px" frameborder="0"></iframe>
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment