# e2pdf/1.00.13/js/e2pdf.frontend.js

E2Pdf – Export Pdf Tool for WordPress, version 1.00.13. 15 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.00.13/code/js/e2pdf.frontend.js
- Raw: https://pluginprobe.com/plugins/e2pdf/1.00.13/raw/js/e2pdf.frontend.js
- Modified: 2018-11-07T14:38:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/e2pdf/1.00.13/code/js/e2pdf.frontend.js#L10-L20`.

```javascript
jQuery(document).ready(function () {
    if (jQuery('.e2pdf-download.e2pdf-auto').length > 0) {
        jQuery('.e2pdf-download.e2pdf-auto').each(function () {
            if (jQuery(this).hasClass('e2pdf-inline')) {
                window.open(jQuery(this).attr('href'), '_blank');
            } else {
                location.href = jQuery(this).attr('href');
            }
        });
    }
});




```
