Open In App

jQWidgets jqxRadioButton animationHideDelay Property

Last Updated : 28 Oct, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxRadioButton widget represents a jQuery radio button that is used to make a choice among a set of mutually exclusive and related options. This widget is used to select only a single option from the group of options.

The animationHideDelay property is used to set or return the hiding delay of the animation when the jqxRadioButton widget is going to be unchecked. It accepts Number type values and its default value is 300.

Syntax:

Set the animationHideDelay property.

$('selector').jqxRadioButton({ 
    animationHideDelay: Number 
});

 

Return the animationHideDelay property.

var AHD = $('selector')
    .jqxRadioButton('animationHideDelay');

Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxradiobutton.js”></script>

The below example illustrates the jQWidgets jqxRadioButton animationHideDelay property.

Example:

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" href=
    "jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" 
        src="scripts/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqx-all.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxradiobutton.js"></script>
  
    <style>
        h1,
        h3 {
            text-align: center;
        }
          
        #GFG,
        #GFG1 {
            width: 100%;
            margin: 0 auto;
        }
    </style>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        jQWidgets jqxRadioButton animationHideDelay Property
    </h3>
  
    <div id='GFG'>
        Web Technology
    </div>
  
    <div id='GFG1'>
        Data Structure
    </div>
  
    <script type="text/javascript">
        $(document).ready(function() {
            $("#GFG, #GFG1").jqxRadioButton({
                width: 200,
                height: 25,
                animationHideDelay: 1000
            });
        });
    </script>
</body>
  
</html>


Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxcheckandradio/jquery-radiobutton-getting-started.htm



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads