$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Uncaught ReferenceError: jQuery is not defined . How do I define it correctly?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Uncaught ReferenceError: jQuery is not defined . How do I define it correctly?

matteradmin9PV0评论

The following code is in the same php script. But I get Uncaught ReferenceError: jQuery is not defined in chrome debugger.

validate.js is in plugins/validate/validate.js

I know this is the problem , as I tried validate.js when not using wordpress, by including it externally, & it worked fine. I am using the code below, on a page.

What is the solutions please?

add_action( 'init', 'load_jquery' );
function load_jquery() {
    wp_enqueue_style( 'jquery');
}


function add_my_css_and_my_js_files() {
    wp_register_script( 'validate', plugins_url( '/validate.js', __FILE__ ) );
}
add_action( 'wp_enqueue_scripts', "add_my_css_and_my_js_files" );

The following code is in the same php script. But I get Uncaught ReferenceError: jQuery is not defined in chrome debugger.

validate.js is in plugins/validate/validate.js

I know this is the problem , as I tried validate.js when not using wordpress, by including it externally, & it worked fine. I am using the code below, on a page.

What is the solutions please?

add_action( 'init', 'load_jquery' );
function load_jquery() {
    wp_enqueue_style( 'jquery');
}


function add_my_css_and_my_js_files() {
    wp_register_script( 'validate', plugins_url( '/validate.js', __FILE__ ) );
}
add_action( 'wp_enqueue_scripts', "add_my_css_and_my_js_files" );
Share Improve this question asked Feb 7, 2014 at 16:48 user28566user28566
Add a comment  | 

2 Answers 2

Reset to default 2

Just use deps parameter to include jQuery, change your code to:

    function add_my_css_and_my_js_files() {
        wp_register_script( 'validate', plugins_url( '/validate.js', __FILE__ ), array( 'jquery' ) );
        wp_enqueue_script('validate');
    }
    add_action( 'wp_enqueue_scripts', "add_my_css_and_my_js_files" );

uncaught referenceerror jquery is not defined :

error display in console

how can i fix it., help me

<script>
function changeval1()
{
    var val = document.getElementById('time').value;
      JQuery.ajax({
        type: "GET", data: {
  zone:val
 },
        url: "fetch.php",             
        dataType: "html",               
        success: function(response){                    
            document.getElementById("times").innerHTML = response;
        }
    });
}
</script>
Post a comment

comment list (0)

  1. No comments so far