Firefox Tomorrow

web api instance method

CSSFunctionRule: getParameters() method

View on MDN ↗

Limited availability

The getParameters() method of the CSSFunctionRule interface returns an array of objects representing the custom function’s parameters.

Syntax

getParameters()

Parameters

None.

Return value

An array of objects containing the following properties:

  • name
    • : A string representing the name of the function parameter.
  • type
    • : A string representing the data type of the parameter, or * if no data type was specified.
  • defaultValue
    • : A string representing the default value of the parameter, or null if no default value was specified.

If no parameters were specified in the associated @function at-rule, an empty array is returned.

Examples

See the main CSSFunctionRule reference page for an example.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also