Skip to content

Instantly share code, notes, and snippets.

@travislopes
Created August 12, 2015 01:38
Show Gist options
  • Save travislopes/66eb8bcb73741a9100f3 to your computer and use it in GitHub Desktop.
Save travislopes/66eb8bcb73741a9100f3 to your computer and use it in GitHub Desktop.
<?php
add_action( 'gform_enqueue_scripts_10', 'enqueue_dropdown_script', 10, 2 );
function enqueue_dropdown_script( $form, $is_ajax ) {
wp_register_script( 'jquery-dropdown', 'js/jquery.dropdown.js', array( 'jquery' ) );
wp_enqueue_script( 'gform-jquery-dropdown', 'js/gravityforms.dropdown.js', array( 'jquery', 'jquery-dropdown' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment