Non string parameter for alert() : Dialog « Window Browser « JavaScript DHTML






Non string parameter for alert()

  
<HTML>
<HEAD>
<SCRIPT LANGUAGE = "JavaScript">
     function Application(Title, ProgramName, Path, Vendor) {
        this.Title = Title
        this.ProgramName = ProgramName
        this.Path = Path
        this.Vendor = Vendor
     }
   
     function displayApp() {
        alert(Application)
     }
   
</SCRIPT>
</HEAD>
<BODY>
<H1></H1>
<FORM>
<INPUT Type="button" Value="Display Object Definition" OnClick="displayApp()"
</INPUT>
</FORM>
</BODY>
           
         
    
  








Related examples in the same category

1.Displays and monitors the most used dialog boxes
2.Dialog in JavaScript
3.Open a dialog window
4. String Object's Length, Document.Location Properties, confirm and input dialog
5. Working with the Alert, Confirm, and Prompt Methods
6.Alert box (dialog) with line-breaks
7.Button click to display dialog
8.Pop-up Window - centred
9.Display a confirm box (dialog)
10.Display a prompt box (dialog)
11.Confirm Dialog Box
12.The Prompt Dialog Box: check the return result
13.Document for the Modeless Dialog Box
14.Use prompt for password checking
15.User input
16.Yes/No Confirmation
17.Dialog Box Demo
18.Alert Window
19.Main Page for show Modeless Dialog
20.Document for the Modal Dialog
21.Main Page for show Modal Dialog
22.Create a pop-up
23.Alert Dialog
24.What is the output of a confirm dialog
25.If OK button was clicked
26.Use if-else with confirm dialog
27.Prompt Input Dialog
28.Pass string parameter to alert dialog box
29.Pass integer value to alert dialog box
30.Assign returning value from prompt dialog box to your variable
31.A carriage return in alert dialog box
32.Escape string in alert dialog box
33.Tab key in the alert dialog box
34.New line character in alert box