PluginProbe
PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin / 1.7.1
PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin v1.7.1
trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 All 71 releases
pdf-print / js / script.js

script.js in PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin 1.7.1, at js/script.js

14 lines 518 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function($) {
2 $(document).ready( function() {
3 $( '#pdfprnt_settings_form input' ).bind( "change click select", function() {
4 if ( $( this ).attr( 'type' ) != 'submit' ) {
5 $( '.updated.fade' ).css( 'display', 'none' );
6 $( '#pdfprnt_settings_notice' ).css( 'display', 'block' );
7 };
8 });
9 $( '#pdfprnt_settings_form select' ).bind( "change", function() {
10 $( '.updated.fade' ).css( 'display', 'none' );
11 $( '#pdfprnt_settings_notice' ).css( 'display', 'block' );
12 });
13 });
14 })(jQuery);