jQWidgets jqxRadioButton render() Method Last Updated : 28 Oct, 2021 Comments Improve Suggest changes Like Article Like 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 render() method is used to render the widget on the screen. It does not accept any parameter and does not return any value. Syntax: $('Selector').jqxRadioButton('render'); 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 render() method. 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 { width: 100%; margin: 0 auto; } </style> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> jQWidgets jqxRadioButton render() Method </h3> <div id='GFG'> Web Technology </div> <center> <input type="button" id="jqxBtn" value="Render the Radio Button" style="padding: 5px 15px; margin-top: 20px;"> </center> <script type="text/javascript"> $(document).ready(function() { $("#GFG").jqxRadioButton({ width: 200, height: 25 }); $('#jqxBtn').on('click', function (event) { $('#GFG').jqxRadioButton('render'); alert('Render the Radio Button Widget'); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxcheckandradio/jquery-radiobutton-api.htm Comment More infoAdvertise with us Next Article jQWidgets jqxRadioButtonGroup render() Method A ashokjaiswal Follow Improve Article Tags : Web Technologies JQuery jQuery-jQWidgets jQWidgets-jqxRadioButton Similar Reads jQWidgets jqxRadioButtonGroup render() Method jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxRadioButtonGroup widget is used to display a group of radio buttons that possesses API in order to modify 3 min read jQWidgets jqxRadioButtonGroup render() Method jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxRadioButtonGroup widget is used to display a group of radio buttons that possesses API in order to modify 3 min read jQWidgets jqxRadioButtonGroup render() Method jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxRadioButtonGroup widget is used to display a group of radio buttons that possesses API in order to modify 3 min read jQWidgets jqxButton render() Method 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 jqxButton is used to illustrate a jQuery button widget that enables us to show a button on the desired web page 1 min read jQWidgets jqxRadioButton val() Method 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 ex 2 min read jQWidgets jqxRadioButton uncheck() Method 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 ex 2 min read Like