jQuery UI Controlgroup create Event
Last Updated :
23 Dec, 2021
jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. A controlgroup is used to group various input widgets like checkbox, button, etc. The control group helps to apply common properties to all the elements of a form.
The jQuery UI Controlgroup create event is used to triggered when the controlgroup widget is created.
Syntax:
Initialize the controlgroup with the create callback specified:
$( ".selector" ).controlgroup({
create: function( event, ui ) {}
});
Bind an event listener to the controlgroupcreate event:
$( ".selector" ).on( "controlgroupcreate",
function( event, ui ) {} );
Parameters: It accepts a callback function that holds two parameters.
- event: It accepts Event type value.
- ui: It accepts Object type value. The ui object can be empty but used for consistency with other events.
CDN Link: First, add jQuery UI scripts needed for your project.
<link rel=”stylesheet” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery-1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
Example: This example describes the uses of jQuery UI Controlgroup create event.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js">
</script>
<script src=
"https://code.jquery.com/ui/1.12.1/jquery-ui.js">
</script>
<script>
$(document).ready(function () {
$("#GFG").controlgroup({
create: function( event, ui ) {
alert("Widget Created!");
}
});
});
</script>
</head>
<body>
<center>
<h1 style="color:green">
GeeksforGeeks
</h1>
<h3>jQuery UI Controlgroup create Event</h3>
<div id="GFG">
<label for="radio_1">Men</label>
<input type="radio" name="type" id="radio_1">
<label for="radio_2">Women</label>
<input type="radio" name="type" id="radio_2">
<select>
<option>Cricket</option>
<option>Hockey</option>
<option>Tennis</option>
<option>Football</option>
</select>
<label for="official">Official</label>
<input type="checkbox" name="official" id="official">
</div>
</center>
</body>
</html>
Output:
Reference: https://api.jqueryui.com/controlgroup/#event-create
Similar Reads
jQuery UI Button create Event jQuery UI consists of GUI widgets, visual effects, and themes implemented using HTML, CSS, and jQuery. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Button create event is used to trigger when the button element is created. This event accept a callback function that h
1 min read
jQuery UI Buttonset create Event jQuery UI consists of GUI widgets, visual effects, and themes implemented using HTML, CSS, and jQuery. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Buttonset widget is used to give a visual grouping for a group of related buttons. The jQuery UI Buttonset create event
2 min read
jQuery UI Autocomplete create Event jQuery UI consists of GUI widgets, visual effects, and themes implemented using HTML, CSS, and jQuery. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Autocomplete widget is used to perform autocomplete enables to quickly find and select from a pre-populated list of val
2 min read
jQuery UI Controlgroup enable() Method jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. A control group is used to group various input widgets like checkboxes, buttons, etc. The control group helps to apply common propert
1 min read
jQuery UI Controlgroup direction Option jQuery UI consists of GUI widgets, visual effects, and themes implemented using jQuery, CSS, and HTML. jQuery UI is great for building UI interfaces for the webpages. The jQuery UI Controlgroup direction option is used to add the direction of controlgroup elements. Its default value is horizontal. S
1 min read