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.

Uncaught Error: Syntax error, unrecognized expression

Posted at

jQueryのバージョンが変わり、正規表現の書式が厳密になったようです。

$(‘a[href^=#]’)を
$(‘a[href^=”#”]’) に変更すれば動く。
記事が多くみられました。

自分も、同じエラーになったので少し変えてみました。
自分の場合は、
$("window").on("load", function() {     を
$('window').on("load", function() {     に変えると動きました。

windowの部分ですね。"" を ' 'に変更するとエラーがなくなりました。
よっしゃ。

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?