Hi, can i ask some help to all experts, I have a form and i want to submit the form via jQuery ajax and i want to open this "to_my_other_page.php" it will open a new window,is this possible?

Thank you in advance.


here is my code

Code:
 $(function(){
	$('#imgbttn').click(function(){
		$.ajax({
			 type: 'post',
			  data: $('#myform').serialize(),
			  url:'to_my_other_page.php',
			  success: function(){		
			 }
		 });		 
	 });
});