Multiple Forms Submission Redirect in a New Window
-
Hi, i tried Form Submission Redirect in a New Window with this code
`/**
* Redirect link in new tab.
*
* @link https://wpforms.com/developers/how-to-open-redirect-in-a-new-window/
*
*/
function wpf_dev_open_redirect_new( ) {
?>
<script type=”text/javascript”>
jQuery(function($){
$(“form#wpforms-form-530”).attr(“target”, “_blank”);
});document.getElementById(“wpforms-form-530”).onsubmit = function(){
location.reload(true);
}
</script>
<?php
}
add_action( ‘wpforms_wp_footer_end’, ‘wpf_dev_open_redirect_new’, 30 );`its working fine, but can you please tell how can i set Multiple Forms Submission Redirect in a New Window.
Thanks,
Jagan
- The topic ‘Multiple Forms Submission Redirect in a New Window’ is closed to new replies.