This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Get the jQuery library from wordpress to frontend: This is a PHP snippet use with your theme or a code snippet plugin--> | |
function enqueue_jquery_ui() { | |
wp_enqueue_script('jquery-ui-draggable'); | |
} | |
add_action('wp_enqueue_scripts', 'enqueue_jquery_ui'); | |
/*jQuery to make any element dragable on the website*/ | |
jQuery(document).ready(function($) { |