Skip to content
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
jQuery.isFunction: Resolve ambiguity about what is being tested
Fixes gh-1034
  • Loading branch information
gibson042 committed Jan 30, 2018
commit 1b182164cfec9a5e311fb3d7d2410e8da400ce9e
6 changes: 3 additions & 3 deletions entries/jQuery.isFunction.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<title>jQuery.isFunction()</title>
<signature>
<added>1.2</added>
<argument name="obj" type="PlainObject">
<desc>Object to test whether or not it is a function.</desc>
<argument name="value" type="Anything">
<desc>The value to be tested.</desc>
</argument>
</signature>
<desc>Determine if the argument passed is a JavaScript function object. </desc>
<desc>Determines if its argument is callable as a function.</desc>
<longdesc>
<p><strong>Note:</strong> As of jQuery 1.3, functions provided by the browser like <code>alert()</code> and DOM element methods like <code>getAttribute()</code> are not guaranteed to be detected as functions in browsers such as Internet Explorer.</p>
</longdesc>
Expand Down