JavaScript - Simple Display Post Message

In this tutorial we will create a Simple Display Post Message using JavaScript. This code will post a message dynamically when the user click the send button. The code use onclick() function to call a method that can post a message to a div using appendChild() as dot notation in the parent element div. You can apply this script to your code to make your transaction faster, it is a user-friendly program feel free to modify it. We will use JavaScript to add some new feature to the website interface by actually written into an HTML page. It is what gives your page a different interactive elements and animation that engage a user.

Getting Started:

This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE hmtl>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </a>            </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">JavaScript - Simple Display Post Message</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-4">
  17.                         <form>
  18.                                 <div class="form-group">
  19.                                         <label>Name</label>
  20.                                         <input type="text" id="name" class="form-control" />
  21.                                 </div>
  22.                                 <div class="form-group">
  23.                                         <label>Message</label>
  24.                                         <textarea id="message" class="form-control" style="resize:none; height:150px;">
  25.                                         </textarea>
  26.                                 </div>
  27.                                 <center><button type="button" class="btn btn-primary" onclick="postMessage();">Send</button></center>
  28.                         </form>
  29.                 </div>
  30.                 <div class="col-md-8">
  31.                         <div class="alert alert-success">Message List</div>
  32.                         <div id="result"></div>
  33.                 </div>
  34.         </div>
  35. <script src="js/script.js"></script>   
  36. </body>
  37. </html>

Creating the Script

This code contains the script of the application. This code will post a message when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js directory
  1. function postMessage(){
  2.         var name=document.getElementById('name').value;
  3.         var message=document.getElementById('message').value;
  4.  
  5.         if(name =="" || message ==""){
  6.                 alert("Please enter something first!");
  7.         }else{
  8.                 var parent=document.createElement('div');
  9.                 var el_name=document.createElement('h5');
  10.                 var el_message=document.createElement('p');
  11.                 var el_line=document.createElement('hr');
  12.                 var txt_name=document.createTextNode(name);
  13.                 var txt_message=document.createTextNode(message);
  14.                 el_name.appendChild(txt_name);
  15.                 el_message.appendChild(txt_message);
  16.                 el_line.style.border='1px dotted #ccc';
  17.                 parent.appendChild(el_name);
  18.                 parent.appendChild(el_line);
  19.                 parent.appendChild(el_message);
  20.                 parent.setAttribute('class', 'well');
  21.                 document.getElementById('result').appendChild(parent);
  22.  
  23.                 document.getElementById('name').value="";
  24.                 document.getElementById('message').value="";
  25.         }
  26.  
  27. }
There you have it we successfully created a Simple Display Post Message using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment