Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブラウザがjQueryMobileをサポートしているかどうかを確認するにはどうすればよいですか?
Modernizrを使用することを考えていましたが、どの機能を検出すればよいかわかりません。
ドキュメント:
http://jquerymobile.com/gbs/
$.mobile.gradeA()
ブラウザのグレードを確認できます。
if($.mobile.gradeA()){ alert("Supports"); }else{ alert("Does not support"); }