programming-examples/js/_Basic/Print the contents of the current window..js
2019-11-15 12:59:38 +01:00

4 lines
59 B
JavaScript

function print_current_page()
{
window.print();
}