02.03.2022
Adding Custom JS to WordPress? Remember jQuery NoConflict Wrappers
Wpmu blog
0 Комментариев 170 просмотров
If you’re adding some extra jQuery to customize your WordPress site and it doesn’t seem to be working, remember that the copy of jQuery that WP loads is in “no conflict” mode.
If you’re attempting to use the default jQuery shortcut of $, then you’ll want to wrap it with the following:
jQuery(document).ready(function($) {
// $() will work as an alias for jQuery() inside of this function
});
This will save you a lot of time beating your head against a wall, wondering why your jQuery isn’t working. 😉
Source: WordPress Codex
Щелкните ниже, чтобы поставить оценку!
Всего: 0 В среднем: 0