Hi , I have SFG for Magento . I am trying to add a print preview button before submitting the form and print button on last page after Thankyou.
Do you have any code for that. I used your code listed on one of the topics it wont work.
viewtopic.php?t=655
function printSpecial() {
var pagina = document.getElementById('for_print'); //Draw attention, for_print instead sfg_fieldset
var pagimp = window.open("about:blank",null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no"); //more handy popup
pagimp.document.write(pagina.innerHTML);
pagimp.document.close();
pagimp.print();
pagimp.close();
I just see a blank page with no data??

