Home >Web Front-end >JS Tutorial >Why is My jQuery '$ is not defined' Even Though It's Included?
JQuery: Addressing the "$ is not defined" Error
Despite referencing jQuery in the site master, you encounter the "$ is not defined" error when using a basic click event. This issue may stem from one of three underlying causes.
Cause 1: Script Loading Issue
Ensure that your JavaScript file is loading correctly into your page. The script reference should resemble this format:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
Avoid using attributes like "async" or "defer."
Cause 2: Corrupted jQuery
Check for any alterations or potential overrides to the core jQuery file. Ensure that no plugins have overwritten the "$" variable.
Cause 3: Premature JavaScript Execution
Your JavaScript code may be executing before the page and jQuery are fully loaded. Enclose your jQuery code within the following:
$(document).ready(function () { // Your jQuery code here });
This ensures that your code runs after jQuery initialization.
Additional Considerations
The above is the detailed content of Why is My jQuery '$ is not defined' Even Though It's Included?. For more information, please follow other related articles on the PHP Chinese website!