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();
}
Post a Comment for "How To Print All Frames On The Page In One File"