Advertisement
WalterTosolini

Js example function

Jan 19th, 2015
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Javascript Test di Tosolini.info</title>
  5. <meta name="" content="">
  6. <script type="text/javascript">
  7.     function animali(cane, gatto) {
  8. alert( "il mio cane si chiama " +  cane + " mentre il gatto si chiama " + gatto);
  9. }  
  10. </script>
  11. </head>
  12. <body>
  13.  
  14. <script type="text/javascript">
  15.     animali("Lola", "Sissi");
  16. </script>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement