when user submit the form, a png file will download automatically without url change. how it's possible in jquery any idea? I am trying....
<script>
jQuery( "#gform_3" ).submit(function( event ) {
window.open('https://s3-us-west-2.amazonaws.com/s.cdpn.io/172905/test.pdf', '_blink', 'download');
event.preventDefault();
});
</script>