Guest User

Untitled

a guest
Nov 16th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. // only queue when page slug where CF is located is true
  3.  
  4. function contactform() {
  5.     if(is_page(‘page-slug’)) {
  6.         wp_register_script( 'jerrixit_contactform', get_stylesheet_directory_uri() . '/jerrixit.js', array( 'jquery' ) );
  7.         wp_enqueue_script( 'jerrixit_contactform' );
  8.     }
  9. }
  10. add_action( 'wp_enqueue_scripts', 'contactform' );
  11.  
  12. // .JS file
  13.  
  14. jQuery(function($){
  15.     var max = 20;
  16.     var checkboxes = $('input[type="checkbox"]');
  17.     checkboxes.change(function(){
  18.         var current = checkboxes.filter(':checked').length;
  19.         checkboxes.filter(':not(:checked)').prop('disabled', current >= max);
  20.     });
  21. });
Add Comment
Please, Sign In to add comment