# easy-footnotes/1.1.1/assets/js/easy-footnotes-admin.js

Easy Footnotes, version 1.1.1. 13 lines.

- Page: https://pluginprobe.com/plugins/easy-footnotes/1.1.1/code/assets/js/easy-footnotes-admin.js
- Raw: https://pluginprobe.com/plugins/easy-footnotes/1.1.1/raw/assets/js/easy-footnotes-admin.js
- Modified: 2018-11-25T22:07:12+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/easy-footnotes/1.1.1/code/assets/js/easy-footnotes-admin.js#L10-L20`.

```javascript
jQuery(function() {
    
    jQuery("input[name=hide_easy_footnote_after_posts]").click(function() {
        // only show the "Show on Front page" option when the user has decided NOT to hide the footnotes from the bottom of the posts.
        // jQuery("#easy_footnote_on_front").toggle(!this.checked); 

        // Disable the "Show on Front page" option when the user has decided NOT to hide the footnotes from the bottom of the posts.
        jQuery("input[name=show_easy_footnote_on_front]").attr('disabled',this.checked)
    });
       
});


```
