当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

JQuery is not supported in 57.0.2 (64-bit)

  • 7 件の返信
  • 1 人がこの問題に困っています
  • 20 回表示
  • 最後の返信者: SumitKumar

more options

error message at console is "The ‘content’ attribute of Window objects is deprecated. Please use ‘window.top’ instead." while working with JQuery 3.2.1

debugging stops at:-

 Paused on exception

SyntaxError: '*,:x' is not a valid selector

error message at console is "The ‘content’ attribute of Window objects is deprecated. Please use ‘window.top’ instead." while working with JQuery 3.2.1 debugging stops at:- Paused on exception SyntaxError: '*,:x' is not a valid selector

すべての返信 (7)

more options

jQuery should work in Firefox, do you have a specific example of a page that's not working?

more options

Just another question:

The System Details list shows this extension: Buffer 3.3.20 (firefox@buffer)

Do you recognize this extension because otherwise it might be malware?

more options

Thanks for your concern. but I am unable to rectify problem yet. I am attaching images of the console while browsing jquery containing website. eg: www.jquery.com

この投稿は SumitKumar により に変更されました

more options

Is this happening on multiple websites, or just jquery.com? For example, if you go to this page: https://jsfiddle.net/qwchnmha/ , what message do you see in the lower-right (it should say either "no" or "yes")?

more options

it is happening on various websites. also whenever using jquery at offline mode. screenshots are attached below. yes, also on jsfiddle

この投稿は SumitKumar により に変更されました

more options

In your screenshot, it looks like you might have "pause on all exceptions" enabled (the octagon icon with two vertical lines in it is highlighted blue). Could you try clicking that to disable it, or switch it to just "pause on uncaught exceptions"?

I think what's happening is that jQuery does this in order to test whether your browser is an old version of Opera or not:

assert(function( div ) {
	...
			// Opera 10-11 does not throw on post-comma invalid pseudos
			div.querySelectorAll("*,:x");
			rbuggyQSA.push(",.*:");
		});

So it's expected that this code causes an error, since the only browser it works in is Opera. Normally, the assert() block around it would mean that the error gets ignored and that jQuery finishes loading normally, but because you have "pause on all exceptions" enabled, the devtools will stop the page.

more options

Thanks for your concern. I got it.