Skip to content

Instantly share code, notes, and snippets.

View ahforayeji's full-sized avatar

Ahsan Habib Forayeji ahforayeji

View GitHub Profile
@ahforayeji
ahforayeji / gist:3ad4890b1b776f59b8d7b91706a55df1
Created May 11, 2024 18:38
Enable drag and drop for any element in your WordPress website
<!-- 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($) {