Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The <a href="http://docs.jquery.com/Utilities/jQuery.browser" rel="nofollow noreferrer">jQuery documentation for <code>jQuery.browser</code></a> shows the following warning. (Emphasis is mine.)</p> <blockquote> <p>Because <code>$.browser</code> uses <code>navigator.userAgent</code> to determine the platform, <strong>it is vulnerable to spoofing by the user or misrepresentation by the browser</strong> itself. <strong>It is always best to avoid browser-specific code entirely</strong> where possible. Instead of relying on <code>$.browser</code> it's better to use libraries like <a href="http://modernizr.com/" rel="nofollow noreferrer">Modernizr</a>.</p> </blockquote> <p>The documentation page also says:</p> <blockquote> <p>This property was removed in jQuery 1.9 and is available only through the jQuery.migrate plugin. Please try to use feature detection instead.</p> </blockquote> <p>Even <a href="http://docs.jquery.com/Utilities/jQuery.support" rel="nofollow noreferrer"><code>jQuery.support</code></a>, which was suggested from the old documentation has the following warning. (Emphasis is mine.)</p> <blockquote> <p>A collection of properties that represent the presence of different browser features or bugs. <strong>Intended for jQuery's internal use</strong>; specific properties may be removed when they are no longer needed internally to improve page startup performance. <strong>For your own project's feature-detection needs, we strongly recommend the use of an external library such as <a href="http://modernizr.com/" rel="nofollow noreferrer">Modernizr</a></strong> instead of dependency on properties in <code>jQuery.support</code>.</p> </blockquote> <p>The previous documentation for <code>jQuery.support</code> reported the following properties and values.</p> <ul> <li><code>$.support.boxmodel</code> is <code>false</code> in IE 6, and 7.</li> <li><code>$.support.cssFloat</code> is <code>false</code> for IE 6, 7 and 8; it is <code>true</code> in IE 9.</li> <li><code>$.support.leadingWhitespace</code> is <code>false</code> for IE 6, 7, and 8.</li> <li><code>$.support.objectAll</code> is currently <code>false</code> for IE 6, 7, and 8.</li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload