I would like to be able to print a div with overflow:auto
by clicking a link. Below is the code I am working with but it dose it on page load...
printMe=window.open();
printMe.document.write($('.terms_and_conditions').html());
printMe.print();
printMe.close();