8
9

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 3 years have passed since last update.

【解決】Rails6 + jQuery | Uncaught ReferenceError: $ is not defined

Posted at

Rails6でjqueryを使って個人開発中Uncaught ReferenceError: $ is not definedとか言うエラーが出た。色んな記事で書いてあったrequire("jquery")とかwindow.$ = $;を試してみたがダメ。結果的に海外の変な記事を参考に解決できたのでメモ。

スクリーンショット 2020-11-13 14.40.01.png

前提

  • Railsのバージョンが
    • Railsバージョン5は対象外
  • JQueryは導入済み

結論

app/javascript/packs/application.jsに以下を追加

app/javascript/packs/application.js
require("@rails/ujs").start()
require("turbolinks").start()
require("@rails/activestorage").start()
require("channels")

// ここから追加
var jQuery = require('jquery')
global.$ = global.jQuery = jQuery;
window.$ = window.jQuery = jQuery;
// ここまで

参考にしたサイト
https://qiita.com/takuma_0625/items/adfee3a2305500c6d3a8
https://rubyyagi.com/how-to-use-bootstrap-and-jquery-in-rails-6-with-webpacker/

Rails
jQuery

8
9
1

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
8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?