Exploring dialog interoperability
In the previous chapters, we've combined multiple widgets so that we can see how well they work together, and this chapter will be no exception. We can easily place other UI widgets into the dialog such as the accordion widget that we looked at in the previous chapter. In a new file in your text editor, create the following page:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Dialog</title> <link rel="stylesheet" href="development-bundle/themes/redmond/jquery.ui.all.css"> <script src="js/jquery-2.0.3.js"></script> <script src="development-bundle/ui/jquery.ui.core.js"></script> <script src="development-bundle/ui/jquery.ui.widget.js"></script> <script src="development-bundle/ui/jquery.ui.position.js"></script> <script src="development-bundle/ui/jquery.ui.dialog.js"></script> <script src="development-bundle/ui/jquery.ui.button...