$('#order_info_print_confirmation').click(function() {
var link = 'action_URL' + "?" + $('action_NAME').serialize();
window.open(link,"Print Confirmation","directories=no,status=yes,width=620, height=900,top=0,left=0,scrollbars=yes");
});
What’s wrong here? I’m able to get a popup window with the printConfirmation action on Firefox but can’t figure it out on IE.
Remove the space between ‘Print Confirmation’, make it PrintConfirmation.
i think this could work