Skip to content

jQuery.boxModel should be listed as removed #451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 3 additions & 30 deletions entries/jQuery.boxModel.xml
Original file line number Diff line number Diff line change
@@ -1,40 +1,13 @@
<?xml version="1.0"?>
<entry type="property" name="jQuery.boxModel" return="Boolean" deprecated="1.3">
<entry type="property" name="jQuery.boxModel" return="Boolean" deprecated="1.3" removed="1.8">
<title>jQuery.boxModel</title>
<signature>
<added>1.0</added>
</signature>
<desc><strong>Deprecated in jQuery 1.3 (see <a href="/jQuery.support/">jQuery.support</a>)</strong>. States if the current page, in the user's browser, is being rendered using the <a href="http://www.w3.org/TR/REC-CSS2/box.html">W3C CSS Box Model</a>.</desc>
<desc>States if the current page, in the user's browser, is being rendered using the <a href="http://www.w3.org/TR/REC-CSS2/box.html">W3C CSS Box Model</a>. <strong>This property was removed in jQuery 1.8</strong>. Please try to use feature detection instead.</desc>
<longdesc/>
<example>
<desc>Returns the box model for the iframe.</desc>
<code><![CDATA[
$( "p" ).html( "The box model for this iframe is: <span>" +
jQuery.boxModel + "</span>" );
]]></code>
<css><![CDATA[
p {
color: blue;
margin: 20px;
}
span {
color: red;
}
]]></css>
<html><![CDATA[
<p></p>
]]></html>
</example>
<example>
<desc>Returns false if the page is in Quirks Mode in Internet Explorer</desc>
<code><![CDATA[
$.boxModel
]]></code>
<results><![CDATA[
false
]]></results>
</example>
<category slug="utilities"/>
<category slug="version/1.0"/>
<category slug="deprecated/deprecated-1.3"/>
<category slug="removed"/>
</entry>