Skip to content Skip to sidebar Skip to footer

How To Print All Frames On The Page In One File

I am using frameset tag and i want to print all frames inside the frame set

Solution 1:

This should work:

try{
    document.execCommand('print', false, null);
}
catch(e){
    window.print();
}

Source link

Post a Comment for "How To Print All Frames On The Page In One File"