submit a form in a new tab submit a form in a new tab jquery jquery

submit a form in a new tab


<form target="_blank" [....]

will submit the form in a new tab... I am not sure if is this what you are looking for, please explain better...


It is also possible to use the new button attribute called formtarget that was introduced with HTML5.

<form>  <input type="submit" formtarget="_blank"/></form>


I have a [submit] and a [preview] button,I want the preview to show the print view of the submitted form data, without persisting it to database. Therefore I want [preview] to open in a new tab, and submit to submit the data in the same window/tab.

<button type="submit" id="liquidacion_save"          name="liquidacion[save]"          onclick="$('form').attr('target', '');"      >Save</button></div>    <div><button type="submit" id="liquidacion_Previsualizar" name="liquidacion[Previsualizar]" onclick="$('form').attr('target', '_blank');">Preview</button></div>