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

4 lines
59 B
JavaScript
Raw Normal View History

2019-11-18 14:44:36 +01:00
function print_current_page()
{
window.print();
}