0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordPressでjQueryが動かない

Posted at

WordPressでjQueryが動かない

WordPressでjQueryを使おうとした時「$ is not a function」とコンソールエラーが出て動かなかったので調べてみた。

悪さしている奴が見つかった

wordpressの中で使っているjquery.jsの「jQuery.noConflict();」という記述が問題だった。
APIの説明通り、他ライブラリとのコンフリクトを避けるために使われているそう。ふーん・・。
http://semooh.jp/jquery/api/core/jQuery.noConflict/_/

というわけで、以下の通り記述を直したら動いた!!
$('.hoge').val();

jQuery('.hoge').val();

続き頑張るぞー(^O^)/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?