I am sending some data from one page to another via controller , for sending data I am using hidden element.
$(form).attr("method","POST");
$(form).attr("target","_blank");
$(form).attr("action","url")
I want to open the "url" in new window with custom size. I have seen many posts regarding this but not getting any proper solution.