Advertisement
Guest User

Untitled

a guest
Jun 29th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <style>
  6. #wrapper {
  7. width:900px;
  8. margin:auto;
  9. }
  10. #right {
  11. float:right;
  12. margin-left:2%;
  13. width:48%;
  14. height:440px;
  15. border:1px solid black;
  16. }
  17.  
  18. #left {
  19. float:left;
  20. width:48%;
  21. border:1px solid black;
  22. }
  23. #inputSrc {
  24. height:400px;
  25. width:100%;
  26. }
  27. </style>
  28. <script type="text/javascript">
  29. function toDisplay() {
  30. // write the statement to copy content from the left division to the right division
  31. var paragraph=document.getElementById("inputSrc").value;
  32. alert(paragraph);
  33. document.getElementById("right"). innerHTML=paragraph;
  34. }
  35. </script>
  36. </head>
  37. <body>
  38. <div id="wrapper">
  39. <div id="right">
  40. Nothing here at the moment
  41. </div>
  42. <div id="left">
  43. <form>
  44. <textarea id="inputSrc">
  45.  
  46. </textarea>
  47. <input type="button" value="display" onclick="toDisplay()"/>
  48. </form>
  49. </div>
  50. </div>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement