Advertisement
chrishajer

Scroll to top on multi-page form ID 3

Aug 7th, 2012
3,381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <?php
  2. // http://www.gravityhelp.com/forums/topic/how-to-manage-page-breaks-to-go-to-top-of-page
  3. // scroll to top on load for multi-page form
  4. // only enqueue the scroll to top script when form 3 is being embedded
  5. add_action('gform_enqueue_scripts_3', 'enqueue_scroll_to_top', 10, 2);
  6. function enqueue_scroll_to_top($form, $is_ajax) {
  7.     // enqueue the scroll to top script which is stored in the child theme /js/ subdirectory, and depends on jQuery
  8.     wp_enqueue_script('scroll_to_top', get_stylesheet_directory_uri() . '/js/scroll-to-top.js', array('jquery'));
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement