Skip to content

All: Fix links reported by hydra-link-checker #1232

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

Merged
merged 1 commit into from
May 17, 2023
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions categories.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 1.10" slug="deprecated-1.10">
<category name="Deprecated 1.10" slug="deprecated-1.10-and-2.0">
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/</a></p>
]]></desc>
Expand Down Expand Up @@ -401,8 +401,8 @@ var files = event.originalEvent.dataTransfer.files;
<category name="Version 1.5" slug="1.5">
<desc><![CDATA[
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="https://api.jquery.com/extending-ajax/">Extending Ajax</a> documentation.</p>
<p>Additionally jQuery 1.5 includes a new Deferred callback management system you can learn more about in in the <a href="https://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="https://api.jquery.com/jQuery.ajax/#extending-ajax">Extending Ajax</a> documentation.</p>
<p>Additionally, jQuery 1.5 includes a new Deferred callback management system you can learn more about in the <a href="https://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
]]></desc>
</category>
<category name="Version 1.5.1" slug="1.5.1">
Expand Down
4 changes: 2 additions & 2 deletions entries/context.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<entry type="property" name="context" return="Element" deprecated="1.10" removed="3.0">
<entry type="property" name="context" return="Element" deprecated="1.10-and-2.0" removed="3.0">
<title>.context</title>
<signature>
<added>1.3</added>
Expand All @@ -24,6 +24,6 @@ $( "ul" )
<category slug="internals"/>
<category slug="properties/jquery-object-instance-properties"/>
<category slug="version/1.3"/>
<category slug="deprecated/deprecated-1.10"/>
<category slug="deprecated/deprecated-1.10-and-2.0"/>
<category slug="removed"/>
</entry>
4 changes: 2 additions & 2 deletions entries/innerHeight.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ $( "p" ).last().text( "innerHeight:" + p.innerHeight() );

<entry type="method" name="innerHeight" return="jQuery">
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="value">
<type name="String"/>
<type name="Number"/>
<desc>A number representing the number of pixels, or a number along with an optional unit of measure appended (as a string).</desc>
</argument>
</signature>
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="function" type="Function">
<argument name="index" type="Integer" />
<argument name="height" type="Number" />
Expand Down
4 changes: 2 additions & 2 deletions entries/innerWidth.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ $( "p" ).last().text( "innerWidth:" + p.innerWidth() );

<entry type="method" name="innerWidth" return="jQuery">
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="value">
<type name="String"/>
<type name="Number"/>
<desc>A number representing the number of pixels, or a number along with an optional unit of measure appended (as a string).</desc>
</argument>
</signature>
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="function" type="Function">
<argument name="index" type="Integer" />
<argument name="width" type="Number" />
Expand Down
4 changes: 2 additions & 2 deletions entries/jQuery.ajax.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ $.ajax({
<type name="Function"/>
<desc>Specify the callback function name for a JSONP request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests. <strong>As of jQuery 1.5</strong>, you can also use a function for this setting, in which case the value of <code>jsonpCallback</code> is set to the return value of that function.</desc>
</property>
<property default="'GET'" name="method" type="String" added="1.9.0">
<property default="'GET'" name="method" type="String" added="1.9">
<desc>The HTTP method to use for the request (e.g. <code>"POST"</code>, <code>"GET"</code>, <code>"PUT"</code>).</desc>
</property>
<property name="mimeType" type="String" added="1.5.1">
Expand All @@ -150,7 +150,7 @@ $.ajax({
<property default="true" name="processData" type="Boolean">
<desc>By default, data passed in to the <code>data</code> option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to <code>false</code>.</desc>
</property>
<property name="scriptAttrs" type="PlainObject" added="3.4.0">
<property name="scriptAttrs" type="PlainObject" added="3.4">
<desc>Defines an object with additional attributes to be used in a "script" or "jsonp" request. The key represents the name of the attribute and the value is the attribute's value. If this object is provided it will force the use of a script-tag transport. For example, this can be used to set <code>nonce</code>, <code>integrity</code>, or <code>crossorigin</code> attributes to satisfy Content Security Policy requirements.</desc>
</property>
<property name="scriptCharset" type="String">
Expand Down
2 changes: 1 addition & 1 deletion entries/jQuery.cssHooks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ if ( $.support.someCSSProp &amp;&amp; $.support.someCSSProp !== "someCSSProp" )
})( jQuery );
</code></pre>
<h4 id="special-units">Special units</h4>
<p>By default, jQuery adds a "px" unit to the values passed to the <code>.css()</code> method. This behavior can be prevented by adding the property to the <a href="/jQuery.cssNumer/"><code>jQuery.cssNumber</code></a> object</p>
<p>By default, jQuery adds a "px" unit to the values passed to the <code>.css()</code> method. This behavior can be prevented by adding the property to the <a href="/jQuery.cssNumber/"><code>jQuery.cssNumber</code></a> object</p>
<pre><code>
$.cssNumber.someCSSProp = true;
</code></pre>
Expand Down
4 changes: 2 additions & 2 deletions entries/jQuery.globalEval.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</argument>
</signature>
<signature>
<added>3.4.0</added>
<added>3.4</added>
<argument name="code" type="String">
<desc>The JavaScript code to execute.</desc>
</argument>
Expand All @@ -19,7 +19,7 @@
</argument>
</signature>
<signature>
<added>3.5.0</added>
<added>3.5</added>
<argument name="code" type="String">
<desc>The JavaScript code to execute.</desc>
</argument>
Expand Down
4 changes: 2 additions & 2 deletions entries/outerHeight.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $( "p" ).last().text(

<entry type="method" name="outerHeight" return="jQuery">
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="value">
<type name="String"/>
<type name="Number"/>
Expand All @@ -58,7 +58,7 @@ $( "p" ).last().text(
</argument>
</signature>
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="function" type="Function">
<argument name="index" type="Integer" />
<argument name="height" type="Number" />
Expand Down
4 changes: 2 additions & 2 deletions entries/outerWidth.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $( "p" ).last().text(

<entry type="method" name="outerWidth" return="jQuery">
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="value">
<type name="String"/>
<type name="Number"/>
Expand All @@ -58,7 +58,7 @@ $( "p" ).last().text(
</argument>
</signature>
<signature>
<added>1.8.0</added>
<added>1.8</added>
<argument name="function" type="Function">
<argument name="index" type="Integer" />
<argument name="width" type="Number" />
Expand Down
2 changes: 1 addition & 1 deletion notes.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Selected elements are in the order of their appearance in the document.
</xsl:when>
<xsl:when test="@id = 'domlint'">
Forms and their child elements should not use input names or ids that conflict with properties of a form, such as <code>submit</code>, <code>length</code>, or <code>method</code>. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see <a href="https://kangax.github.com/domlint/">DOMLint</a>.
Forms and their child elements should not use input names or ids that conflict with properties of a form, such as <code>submit</code>, <code>length</code>, or <code>method</code>. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see <a href="https://kangax.github.io/domlint/">DOMLint</a>.
</xsl:when>
<xsl:when test="@id = 'hidden-element-dimensions'">
The value reported by <code><xsl:value-of select="@data-title" /></code> is not guaranteed to be accurate when the element or its parent is hidden. To get an accurate value, ensure the element is visible before using <code><xsl:value-of select="@data-title" /></code>. jQuery will attempt to temporarily show and then re-hide an element in order to measure its dimensions, but this is unreliable and (even when accurate) can significantly impact page performance. This show-and-rehide measurement feature may be removed in a future version of jQuery.
Expand Down
2 changes: 1 addition & 1 deletion pages/Types.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ <h3 id="Iteration"> Iteration </h3>
alert( "key is " + [ key ] + ", value is " + obj[ key ] );
}
</code></pre>
<p>Note that for-in-loop can be spoiled by extending Object.prototype (see <a href="http://erik.eae.net/archives/2005/06/06/22.13.54/" class="external text" title="http://erik.eae.net/archives/2005/06/06/22.13.54/">Object.prototype is verboten</a>) so take care when using other libraries.
<p>Note that for-in-loop can be spoiled by extending <code>Object.prototype</code> (see <a href="https://web.archive.org/web/20200416084623/https://erik.eae.net/archives/2005/06/06/22.13.54/" class="external text" title="https://web.archive.org/web/20200416084623/https://erik.eae.net/archives/2005/06/06/22.13.54/">Object.prototype is verboten</a>) so take care when using other libraries.
</p>
<p>jQuery provides a generic <a href="/jQuery.each/"><em>each</em> function</a> to iterate over properties of objects, as well as elements of arrays:
</p>
Expand Down