| 1 |
jQuery(function() { |
| 2 |
|
| 3 |
jQuery("input[name=hide_easy_footnote_after_posts]").click(function() { |
| 4 |
// only show the "Show on Front page" option when the user has decided NOT to hide the footnotes from the bottom of the posts. |
| 5 |
// jQuery("#easy_footnote_on_front").toggle(!this.checked); |
| 6 |
|
| 7 |
// Disable the "Show on Front page" option when the user has decided NOT to hide the footnotes from the bottom of the posts. |
| 8 |
jQuery("input[name=show_easy_footnote_on_front]").attr('disabled',this.checked) |
| 9 |
}); |
| 10 |
|
| 11 |
}); |
| 12 |
|
| 13 |
|