programming-examples/js/_Basic/Print the contents of the current window..js

4 lines
59 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
function print_current_page()
{
window.print();
}