jQuery.isFunction( obj ) Returns: boolean
Description: Determine if the argument passed is a Javascript function object.
-
version added: 1.2jQuery.isFunction( obj )
-
objType: PlainObjectObject to test whether or not it is a function.
-
Note: As of jQuery 1.3, functions provided by the browser like alert()
and DOM element methods like getAttribute()
are not guaranteed to be detected as functions in browsers such as Internet Explorer.
Examples:
Example: Test a few parameter examples.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
|
Example: Finds out if the parameter is a function.
1
|
|
Result:
1
|
|