Displaying 1 result from an estimated 1 matches for "confirm_action".
2008 Dec 24
5
Odd js behavior in Chrome & Safari
View file has a js function "confirm_result()" in <head> section:
<script type="text/javascript">
    function confirm_action()
    {
      result = confirm("Please select OK or Cancel")
      if (result == true)
        document.write("You selected OK.")
      else
        document.write("You selected Cancel.")
    }
  </script>
The <body> section has
<input type="butto...