programming-examples/js/Basic/Print the contents of the current window..js
2019-11-18 14:44:36 +01:00

4 lines
59 B
JavaScript

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