I have website bootstrap as scrolling - I need to print the view in screen as pdf I use this code to print all views
function printpdf()
{
var w = window.open('printed.pdf');
$(w).ready(function(){
w.print();
});
}
I have website bootstrap as scrolling - I need to print the view in screen as pdf I use this code to print all views
function printpdf()
{
var w = window.open('printed.pdf');
$(w).ready(function(){
w.print();
});
}