ADD_3RD_PARTY_LIBRARY_FILE Procedure
This procedure adds the link tag to load a 3rd party css file and also takes into account the specified Content Delivery Network for the application. Supported libraries include: jQuery, jQueryUI, jQueryMobile.
                  
If a library has already been added, it is not added a second time.
Syntax
add_3rd_party_library_file ( 
    p_library in varchar2, 
    p_file_name in varchar2, 
    p_directory in varchar2 default null, 
    p_version in varchar2 default null, 
    p_media_query in varchar2 default null );Parameters
Table 9-2 ADD_3RD_PARTY_LIBRARY_FILE Parameters
| Parameters | Description | 
|---|---|
| 
                                  
  | 
                              
                                  Use one of the c_library_* constants  | 
                           
| 
                                  
  | 
                              
                                  Specifies the file name without version, .min and .css  | 
                           
| 
                                  
  | 
                              
                                  Directory where the file   | 
                           
| 
                                  
  | 
                              
                                  If no value is provided then the same version Application Express ships is used (optional)  | 
                           
| 
                                  
  | 
                              
                                  Value that is set as media query (optional)  | 
                           
Example
The following example loads the Cascading Style Sheet file of the Accordion component of the jQuery UI.
apex_css.add_3rd_party_library_file (
    p_library   => apex_css.c_library_jquery_ui,
    p_file_name => 'jquery.ui.accordion' )
Parent topic: APEX_CSS