jquery is enqueued by default on admin side. So, it may not be loading due to your wp_enqueue_script
statement.
Are you using wp_enqueue_script
inside some action hook? Because you have to. I use it like this:
add_action( 'admin_enqueue_scripts-options_page-{page}', 'myplugin_admin_scripts' );
function myplugin_admin_scripts() {
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
}
Related Posts:
- Why is wp_enqueue_script not loading included jquery ui scripts?
- How do I use jQuery UI tabs in a WordPress page?
- No Styling for the datepicker in WordPress admin
- WordPress Iris Colour Picker adding iOS touch events
- How do I wrap 3rd party jquery scripts so that they work in wordpress?
- WP 3.3.1 Cant get jQuery Datepicker to work
- Jquery UI not working
- How to load jquery ui autocomplete combobox?
- Saving jQuery UI Sortable on WordPress
- jQuery dialog popup
- check / uncheck checkbox using jquery?
- keycode 13 is for which key
- How to change the text of a button in jQuery?
- datetimepicker is not a function jquery
- jQueryUI dialog width
- jQuery datepicker set selected date, on the fly
- How to use radio on change event?
- Form Submit jQuery does not work
- Icons missing in jQuery UI
- Check if user is logged in using JQuery
- How to save the state of a drag and drop jQuery UI Sortables front end layout editor?
- Correct way to enqueue jquery-ui
- Prevent sorting and dragging of specific postbox metabox
- Include jQuery UI as a whole
- jQuery UI Datepicker not working
- How do I implement a jQuery UI dialog modal in a WP plugin?
- Custom function to rearrange attachments when creating posts – Almost there
- Enqueue Javascript Correctly for 3.5
- Enqueue jQuery UI Tabs In Admin Area
- jQuery does not work in widget backend
- jQuery Autocomplete not working with wp_localize_script
- using wp_enqueue_script to attach jquery-ui
- jQuery UI Autocomplete showing all results
- WordPress loads whole jQuery UI library
- calling jquery function on plugin page
- Admin area ‘toggle’ w/ cookie
- WordPress doesn’t Load JQuery Now? Do I need to enqueue JQuery also?
- Which jQueryUI handles are predefined in wordpress?
- Override default jquery ui library with newer version
- How to enable the content editor as a droppable target with jQuery-ui?
- Automatic jQuery accordion from header tags
- Utilizing WordPress’ Admin UI for plugin settings: getting accordion style
- jquery-ui-autocomplete is not loaded with wp_enqueue_script
- jQuery UI inside widget on admin page
- Loading jQuery UI in the head
- Format numeric symbols in titles
- Override theme style with other CSS on a specific page
- How to apply wordpress css styles to a jQueryUi dialog?
- jQuery UI AutoComplete & wp_enqueue_script
- splitting the URL using jQuery
- Need to change url paramenter of share product pintrest [closed]
- Will the latest Bootstrap work properly with the default WordPress jQuery?
- In WooCommerce product archive, how can you also set the quantity to be added to cart by typing, instead of just by using +/-?
- Rhyzz Repeatable-fields javascript in php and wordpress
- WordPress + BlockUI or a splash page [closed]
- Return an array from get_terms and store as JavaScript array for search autocomplete
- How to prevent plugins from loading jQuery
- jQuery UI styles conflicting with TinyMCE dialog
- WordPress Jquery UI Spinner
- Convert WordPress date format to jQuery UI Datepicker format
- call my script only after loading UI library?
- How To Make Iris Color Picker Showed Up Over Form and Text?
- How to add custon UI jquery & Fancybox script to WP
- jQuery tabs plugin with callback to fetch data
- Uncaught TypeError: jQuery(…).slider is not a function
- How can i unload effect.min.js file?
- jQuery UI tab does not work in the plugin page
- jQuery UI Datepicker error
- Open tab on current day problem jQuery and WordPress
- JQuery UI not loading without explicit loading of jQuery
- Is there a default way in wordpress to create a overlay in the dashboard?
- Custom meta box with jQuery.sortable custom post type list
- Removed jQuery script from header.php , any problems?
- Issues with wp_enqueue_script and jquery-ui
- “switchEditors is not defined” with wp_editor() in jQuery UI tabs
- Screen Options JavaScript Code
- Custom Jquery in admin breaks media-upload script
- wp_enqueue_scripts in a plugin’s class
- Drag and Drop Metadata Menu Order
- jQuery UI Tools: Scrollable: More than 1 instance possible?
- A carousel slideshow plugin in JavaScript
- What to include to use jQuery UI Auto Complete
- Theme style overrides the plugin style
- main navigation menu disappear after adding jquery source file
- The script works only once by clicking on the opening and closing
- How to access this jQuery/AJAX data in a PHP file/WordPress plugin
- jquery Autocomplete
- Overwrite js code using WP_Footer
- The dropdown list in autocomplete is not showing
- Dashboard controls have all stopped working
- How can I add a new lib path without call each one on the header?
- Cannot read property ‘hasClass’ of undefined(…) jquery-ui
- datetime jquery UI not showing after theme update
- jQuery UI Sortable not Working With Metabox
- Unable to show messages using ‘admin_notices’
- Sorting UL Listing Within the TinyMCE Visual Editor in WordPress
- How can I disable sorting/dragging of a menu item in the custom menu admin?
- jQuery dialog prints HTML-Tags under WordPress
- I add some js files from a plugin to a specific location
- Jquery UI implementation [closed]