jQWidgets jqxRibbon render() Method Last Updated : 29 Sep, 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 and optimized framework, platform-independent, and widely supported. The jqxRibbon is a jQuery widget that can be used as a tabbed toolbar or mega menu. The render() method is used to render the jqxRibbon widget on the screen. It does not accept any parameter and does not return any value. Syntax: $('#jqxRibbon').jqxRibbon('render');Linked Files: Download jQWidgets from the given link. 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/jqxribbon.js"></script> Example: The below example illustrates the jQWidgets jqxRibbon render() method. HTML <!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href="jqwidgets/styles/jqx.energyblue.css" type="text/css" /> <script type="text/javascript" src="scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src="jqwidgets/jqx-all.js"> </script> <script type="text/javascript" src="jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src="jqwidgets/jqxribbon.js"> </script> </head> <body> <center> <h1 style="color: green">GeeksforGeeks</h1> <h3>jQWidgets jqxRibbon render() Method</h3> </center> <div id="jqxRibbon" style="margin: auto"> <ul> <li>GeeksforGeeks</li> <li>Web Technology</li> <li>Programming Language</li> </ul> <div> <div> <h1>GeeksforGeeks</h1> <nav> <a href="#">Home</a> | <a href="#">Interview</a> | <a href="#">Languages</a> </nav> </div> <div> <h1>Web Technology</h1> <nav> <a href="#">HTML</a> | <a href="#">CSS</a> | <a href="#">JavaScript</a> </nav> </div> <div> <h1>Programming Language</h1> <nav> <a href="#">C Programming</a> | <a href="#">C++ Programming</a> | <a href="#">Java Programming</a> </nav> </div> </div> </div> <center> <input type="button" id="jqxBtn" value="Render Widget" style="padding: 5px 15px; margin-top: 15px"/> </center> <script type="text/javascript"> $(document).ready(function () { $("#jqxRibbon").jqxRibbon({ width: 450, height: 250, reorder: true, }); $("#jqxBtn").on("click", function () { $("#jqxRibbon").jqxRibbon("render"); alert("Widget Rendering"); }); }); </script> </body> </html> Output: Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxribbon/jquery-ribbon-api.htm Comment More infoAdvertise with us Next Article jQWidgets jqxRadioButton render() Method B blalverma92 Follow Improve Article Tags : Web Technologies JQuery jQuery-jQWidgets jQWidgets-jqxRibbon Similar Reads 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 jqxGrid 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 jqxGrid is used to illustrate a jQuery widget that shows data in tabular form. Moreover, it renders full suppor 2 min read jQWidgets jqxListBox 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 jqxListBox is used to illustrate a jQuery ListBox widget which comprises a list of electable elements. The rend 2 min read jQWidgets jqxRibbon refresh() 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 jqxRibbon is a jQuery widget that can be used as a tabbed toolbar or mega menu. The refresh() method is used 2 min read jQWidgets jqxRadioButton 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 jqxRadioButton widget represents a jQuery radio button that is used to make a choice among a set of mutually ex 2 min read jQWidgets jqxTree 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 jqxTree represents a jQuery widget that is used to display a hierarchical collection of items. To display the c 2 min read Like