41.22 GET_HTML_ATTR Function
This function returns a properly escaped HTML attribute if p_value is not null.
                  
Syntax
APEX_PLUGIN_UTIL.GET_HTML_ATTR (
    p_name  IN VARCHAR2,
    p_value IN VARCHAR2 )
    return VARCHAR2;Parameters
| Parameter | Description | 
|---|---|
| p_name | The HTML attribute in lower case. | 
| p_value | The text string that is escaped. | 
Example
The following example demonstrates
CodeExampleHereParent topic: APEX_PLUGIN_UTIL