| Name | Type | Default | 
                
                    | arrowOffsetValue | Number | 0 | 
                
                    | 
                            
                                Sets or gets the arrow's offset from its default position.
                             Code examples
                            
                                Set the arrowOffsetValueproperty. $('#jqxPopover').jqxPopover({arrowOffsetValue: 10});
 
                                Get the arrowOffsetValueproperty. var arrowOffsetValue = $('#jqxPopover').jqxPopover('arrowOffsetValue'); 
 | 
                
                    | animationOpenDelay | String/Number | 'fast' | 
                
                    | 
                            
                                The time for showing of the widget.
                            Possible Values: 'fast'
 'slow'
 time in milliseconds e.g. 1000
 Code examples
                            
                                Set the animationOpenDelayproperty. $('#jqxPopover').jqxPopover({animationOpenDelay: 'slow'});
 
                                Get the animationOpenDelayproperty. var animationOpenDelay = $('#jqxPopover').jqxPopover('animationOpenDelay'); 
 | 
                
                    | animationCloseDelay | String/Number | 'fast' | 
                
                    | 
                            
                                The time for showing of the widget.
                            Possible Values: 'fast'
 'slow'
 time in milliseconds e.g. 1000
 Code examples
                            
                                Set the animationCloseDelayproperty. $('#jqxPopover').jqxPopover({ animationCloseDelay:'fast'}); 
 
                                Get the animationCloseDelayproperty. var animationCloseDelay = $('#jqxPopover').jqxPopover('animationCloseDelay'); 
 | 
                
                    | autoClose | Boolean | true | 
                
                    | 
                            
                                Sets or gets the closing of the widget after click outside of the popover.
                             Code examples
                            
                                Set the autoCloseproperty. $('#jqxPopover').jqxPopover({ autoClose: true }); 
 
                                Get the autoCloseproperty. var autoClose = $('#jqxPopover').jqxPopover('autoClose'); 
 | 
                
                    | animationType | String | 'none' | 
                
                    | 
                            
                                Sets the type of animation.
                            Possible Values: 'none'
 'fade'
 Code example
                            
                                Set the animationTypeproperty. $('#jqxPopover').jqxPopover({animationType : 'fade'}); 
 
                                Get the animationTypeproperty. var animationType = $('#jqxPopover').jqxPopover('animationType'); 
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the popover's height.
                             Code examples
                            
                                Set the heightproperty. $('#jqxPopover').jqxPopover({height:50});
 
                                Get the heightproperty. var height = $('#jqxPopover').jqxPopover('height');
 | 
                
                    | initContent | String | null | 
                
                    | 
                            
                                Initializes the popover's content.
                             Code examples
                            
                                Set the initContentproperty. $('#jqxPopover').jqxPopover({ initContent: function(){ // Some code here. } }); 
 
                                Get the initContentproperty. var initContent = $('#jqxPopover').jqxPopover('initContent'); 
 | 
                
                    | isModal | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the popover is displayed as a modal dialog.
                            If the jqxPopover's mode is set to modal, the popover blocks user interaction with the underlying user interface.
                             Code examples
                            
                                Set the isModalproperty. $('#jqxPopover').jqxPopover({ isModal: true }); 
 
                                Get the isModalproperty. var isModal = $('#jqxPopover').jqxPopover('isModal'); 
 | 
                
                    | offset | Object | null | 
                
                    | 
                            Sets or gets the Popover's offset from its position. Code example
                            
                                Set the offsetproperty. $('#jqxPopover').jqxPopover({offset : {left: 10, top: 10}}); 
 
                                Get the offsetproperty. var offset = $('#jqxPopover').jqxPopover('offset'); 
 | 
                
                    | position | String | 'left' | 
                
                    | 
                            
                                Sets or gets the position of the popover. The position presents the orientation of the popover compared to the selector element
                            Possible Values: 'top'
 'right'
 'bottom'
 'left'
 Code examples
                            
                                Set the positionproperty. $('#jqxPopover').jqxPopover({position: "left"});
 
                                Get the positionproperty. var position = $('#jqxPopover').jqxPopover('position'); 
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts. Code example
                            
                                Set the rtlproperty. $('#jqxPopover').jqxPopover({rtl : true}); 
 
                                Get the rtlproperty. var rtl = $('#jqxPopover').jqxPopover('rtl'); 
 | 
                
                    | selector | Id/jQuery Selector | null | 
                
                    | 
                            
                                Sets or gets the Popover's selector. The selector is the element where the Popover is displayed.
                             Code examples
                            
                                Set the selectorproperty. $('#jqxPopover').jqxPopover({ selector: "id1" }); 
 
                                Get the showArrowproperty. var selector = $('#jqxPopover').jqxPopover('selector'); 
 | 
                
                    | showArrow | Boolean | true | 
                
                    | 
                            
                                Sets or gets the displaying of the popover's arrow.
                             Code examples
                            
                                Set the showArrowproperty. $('#jqxPopover').jqxPopover({ showArrow: true }); 
 
                                Get the showArrowproperty. var showArrow = $('#jqxPopover').jqxPopover('showArrow'); 
 | 
                
                    | showCloseButton | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the close button is displayed.
                             Code examples
                            
                                Set the showCloseButtonproperty. $('#jqxPopover').jqxPopover({ showCloseButton: true }); 
 
                                Get the showCloseButtonproperty. var showCloseButton = $('#jqxPopover').jqxPopover('showCloseButton'); 
 | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the popover's width.
                             Code examples
                            
                                Set the widthproperty. $('#jqxPopover').jqxPopover({width:50});
 
                                Get the widthproperty. var width = $('#jqxPopover').jqxPopover('width');
 | 
                
                    | title | String | "" | 
                
                    | 
                            
                                Sets or gets the popover's title.
                             Code examples
                            
                                Set the titleproperty. $('#jqxPopover').jqxPopover({title: "Title"});
 
                                Get the titleproperty. var title = $('#jqxPopover').jqxPopover('title');
 | 
                
                    | theme | String | '' | 
                
                    | 
                            
                                Sets the widget's theme.
                             
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The
                        base stylesheet creates the styles related to the widget's layout like margin, padding,
                        border-width, position. The second css file applies the widget's colors and backgrounds.
                        The jqx.base.css should be included before the second CSS file. In order to set
                        a theme, you need to do the following:
                         
                            Include the theme's CSS file after jqx.base.css.The following code example adds the 'energyblue' theme.
 <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css"
                                    type="text/css" /> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.energyblue.css"
                                    type="text/css" /> 
Set the widget's theme property to 'energyblue' when you initialize it.
                                $('#jqxPopover').jqxPopover({ theme: "energyblue" });
 | 
                
                    |  | 
                
                    | close | Event |  | 
                
                    | 
                            
                                This event is triggered when the popover is closed.
                             Code examples
                            
                                Bind to the closeevent by type: jqxPopover. $('#jqxPopover').on('close', function () { // Some code here. }); 
 | 
                
                    | open | Event |  | 
                
                    | 
                            
                                This event is triggered when the popover is opened.
                             Code examples
                            
                                Bind to the openevent by type: jqxPopover. $('#jqxPopover').on('open', function () { // Some code here. }); 
 | 
                
                    |  | 
                
                    | close | Method |  | 
                
                    | 
                            
                                Closes the popover.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the closemethod. $('#jqxPopover').jqxPopover('close'); 
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroy the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the destroymethod. $('#jqxPopover').jqxPopover('destroy'); 
 | 
                
                    | open | Method |  | 
                
                    | 
                            
                                Open the popover.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the openmethod. $('#jqxPopover').jqxPopover('open'); 
 |