Skip to content

Instantly share code, notes, and snippets.

@jwebgordon
Created February 6, 2013 18:47
Show Gist options
  • Save jwebgordon/4724793 to your computer and use it in GitHub Desktop.
Save jwebgordon/4724793 to your computer and use it in GitHub Desktop.
Redirect the main window of the iframed form
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
function openParentWindow(){
if($("form.hs-form").length>0){
$("form.hs-form").attr('target','_top');
}
else{
setTimeout(openParentWindow,50);
}
};
setTimeout(openParentWindow, 50);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment