Код: Выделить всё
let w = window.open('', 'PRINT', 'height=400,width=600'), // open new window
t = document.title // title becomes filename when saved as PDF
w.document.write('' + t + ''+
'' + t + '' +
document.getElementsByTagName('pre')[0].outerHTML + // select desired element
'')
w.document.close()
w.focus()
w.print()
w.close() // has to be ommitted on Opera
Есть ли лучшее решение?
Подробнее здесь: https://stackoverflow.com/questions/796 ... -displayed