Skip to content

Instantly share code, notes, and snippets.

@matiascarranza
Last active August 29, 2015 14:12
Show Gist options
  • Save matiascarranza/e79f5514af6238a3f5bb to your computer and use it in GitHub Desktop.
Save matiascarranza/e79f5514af6238a3f5bb to your computer and use it in GitHub Desktop.
POST data to iframe
<iframe id="iframe" src="" class="iframe" seamless="" name="iframe"></iframe>
var form=document.createElement('form');
var spDTO=document.createElement('input');
form.method='POST';
form.action='http://localhost:7170/test';
form.enctype='application/json';
form.target='iframe';
spDTO.value='{some:"value"}';
form.appendChild(spDTO);
form.submit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment