# e2pdf/1.02.02/js/e2pdf.frontend.js

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

- Page: https://pluginprobe.com/plugins/e2pdf/1.02.02/code/js/e2pdf.frontend.js
- Raw: https://pluginprobe.com/plugins/e2pdf/1.02.02/raw/js/e2pdf.frontend.js
- Modified: 2018-12-07T12:07:02+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.02.02/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');
            }
        });
    }
});




```
