Jump to content

How to print webpage using javascript function in IE ?


Recommended Posts

Its Possible call javascript function and print webpage or save as pdf?

My IE wbpage javascript code is : 

<script>
    function myFunction() {
        //var divnav = document.getElementById("divnav");
        var headstr = "<html><head><title>Bill Print eFPS</title></head><body>";
        var footstr = "</body></html>";
        var divprint = document.getElementById("divprint").innerHTML;
        var oldstr = document.body.innerHTML;
        document.body.innerHTML = headstr + divprint + footstr;
        window.print();
        document.body.innerHTML = oldstr;
        return false;
    }
</script>

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...