jqueryHow do I use jQuery UI Dialog?
jQuery UI Dialog
jQuery UI Dialog is a UI component that can be used to display information or request input from a user. It is a modal window that can be used to prompt the user for information or display a message.
The following example code will create a simple dialog box with a message and an "OK" button:
$( "#dialog" ).dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 1000
},
hide: {
effect: "explode",
duration: 1000
}
});
$( "#opener" ).click(function() {
$( "#dialog" ).dialog( "open" );
});
The code is composed of the following parts:
-
$( "#dialog" ).dialog({ ... })
: This creates the dialog box. The options inside the brackets are used to customize the dialog box. -
$( "#opener" ).click(function() { ... })
: This binds a click event to the element with the id "opener". When this element is clicked, the dialog box will open. -
$( "#dialog" ).dialog( "open" )
: This opens the dialog box.
For more information, see the jQuery UI Dialog documentation.
More of Jquery
- How do I use jQuery to zip files?
- How do I use jQuery ZTree to create a hierarchical tree structure?
- How do I download a zip file using jQuery?
- How do I use jQuery to zoom in or out on an element?
- How can I get the y position of an element using jQuery?
- How can I use jQuery to zoom an image when the user hovers over it?
- How do I use jQuery to change the z-index of an element?
- How can I use JQuery with Yii2?
- How do I use jQuery with Yarn?
- How do I use the jQuery closest() function?
See more codes...