Tagged Questions
0
votes
1answer
228 views
Override default jquery ui library with newer version
The latest version of jquery ui core fixes a bug that's on my site. The problem is that Wordpress comes with an earlier version.
How do I override the default jquery ui core? One solution I've found ...
1
vote
1answer
146 views
How do I get my page to load the jQuery UI Effects library?
I'm using javascript for the first time to do some simple animations on the home page of my website. So far I have added the following to my header.php file (which is only used for my home page), ...
0
votes
1answer
380 views
Cannot enqueue jQuery correctly using Google CDN
The problem:
I understand how to regularly enqueue jQuery UI in functions.php.
My problem is that I'm using a selectmenu widget that doesn't come with WordPress by default:
...
0
votes
1answer
299 views
wp_enqueue_scripts in a plugin's class
I'm trying to enqueue jQuery UI in a plugin under a class method. I have this so far:
class AV_Slider {
function slider_load_js(){
wp_register_script('jquery-ui-core', ...
1
vote
3answers
2k views
using wp_enqueue_script to attach jquery-ui
I am trying to load jquery-ui using wp_enqueue_script. I can check that jquery is loaded. jquery-ui is registered i.e. output of var_dump( wp_script_is( 'jquery-ui-tabs', 'registered' ) ); is ...
1
vote
1answer
765 views
Why is jquery-ui-core enqueueing in my footer instead of the header?
This is what I'm using to make sure that I have jquery-ui-core available:
if (!is_admin()) add_action('wp_enqueue_scripts', 'zg_load_scripts');
function zg_load_scripts(){
...
0
votes
1answer
566 views
What to include to use jQuery UI Auto Complete
I was looking at the scripts included with WP and dont see what I can include to use jQuery UI Auto Complete. What do I use? I tried including the whole jQuery UI from Google CDN and auto complete ...
1
vote
2answers
1k views
jQuery UI AutoComplete & wp_enqueue_script
I looked at the included scripts in WordPress (wp_enqueue_script) and didnt find what I should include to use jQuery UI Autocomplete
I am using it in the admin area. Should I just include jQuery UI ...