Problem with wp_enqueue_script('jquery')
-
Hey, I’ve been trying to get this plugin to work right. It does what it should in Chrome, but in FireFox and IE it does not work.
Basically where FF and IE and messing up is with the wp_enqueue_script(‘jquery’) function.
function load_scripts() { wp_enqueue_script('jquery'); } add_action('init', 'load_scripts');
I have also tried to use
add_action('wp_enqueue_scripts', 'load_scripts');
And that did not work either.Why is it that jQuery is not being loaded according to FF and IE?.
Should I being doing something different to load it?
Any input would be greatly appreciated, thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Problem with wp_enqueue_script('jquery')’ is closed to new replies.