I am using the following code
<form id="export" target="_blank" action='exported_data.php' method="get" >
<input type="hidden" id="data" name="data" value="">
</form>
this is my JS
$.ajax({ url: baseUrl + 'entities/GetExportDetails/entity/'+entity,
type: "GET",
async: false,
data: {"id": recordid},
success: function( response ) {
$("#data").val(response);
$("#export").submit();
}
});
Now the issue is that I am using the target=_blank in the form . When I submit the Form in FF or in IE the exported_data.php opens in a new tab but in Chrom it is opening in a pop-up. I don't want it to be opened in the Pop-Up. Can u please help me that It opens in the new tab in all browsers