Get the input value from a dialog : UI Dialog « jQuery « JavaScript Tutorial






<html lang="en">
<head>
  <title></title>
  <link type="text/css" href="js/themes/base/ui.all.css" rel="stylesheet" />
  <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
  <script type="text/javascript" src="js/ui/ui.core.js"></script>
  <script type="text/javascript" src="js/ui/ui.dialog.js"></script>
  <script type="text/javascript" src="js/ui/ui.resizable.js"></script>
  <script type="text/javascript" src="js/ui/ui.draggable.js"></script>
  <link type="text/css" href="js/demos.css" rel="stylesheet" />
  <script type="text/javascript">
    $(function() {
        var cancel = function() {
            $("#myDialog").dialog("close");
        }
        var getResponse = function(){
          var answer;
          $("input").each(function(){
            (this.checked == true) ? answer = $(this).val() : null;
          });
          $("<p>").text(answer).insertAfter($("#poll"));
          $("#myDialog").dialog("close");
        }
        var dialogOpts = {
          modal: true,
          buttons: {
            "Done": getResponse,
            "Cancel": cancel
          },
          autoOpen: false
        };
        $("#myDialog").dialog(dialogOpts);
        $("#poll").click(function() {
          $("#myDialog").dialog("open");
        });  
    });
  </script>
</head>
<body>
    <button id="poll">Poll</button>
    <div id="myDialog" class="flora" title="This is the title">
      <p>Question?</p>
      <label for="yes">Yes!</label><input type="radio" id="yes" value="yes" name="question"><br>
      <label for="no">No!</label><input type="radio" id="no" value="no" name="question">
    </div>
</body>
</html>








30.141.UI Dialog
30.141.1.jQuery UI Dialog
30.141.2.Basic Dialog modal
30.141.3.Modal confirmation
30.141.4.Modal form
30.141.5.Modal message
30.141.6.Set dialog height
30.141.7.Add ok button to dialog and link with event handler
30.141.8.Dialog open event
30.141.9.Dialog closed event
30.141.10.Dialog animation: close
30.141.11.Open a dialog through a button click event
30.141.12.Close a button after pressing OK button
30.141.13.Set auto open to true
30.141.14.Destroy a dialog
30.141.15.Get the input value from a dialog
30.141.16.Closed action
30.141.17.Open div tag based dialog
30.141.18.Slide in/out dialog
30.141.19.Fade in/out dialog