document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <head>
  3. <title>Function</title>
  4.  <script language="JavaScript">
  5.  function pesan()
  6.  {
  7.   var nama = prompt(\'Ketikkan Nama Anda:\',\'\')
  8.   var email = prompt(\'Email Anda : \',\'yogi@bacacoding.blogspot.com\')
  9.   document.write("Nama Anda :" + nama + "<br>")
  10.   document.write("Email Anda :" + email)
  11.  }
  12.  </script>
  13. </head>
  14. <body>
  15. <input type="button" value="Coba Isi Data" onclick="pesan()">
  16. </body>
  17. </html>
');