How to Create a Post in your Page using JavaScript

How to Create a Post in your Page using JavaScript

Introduction

In this tutorial we will create a How to Create a Post in your Page using JavaScript. This tutorial purpose is to teach on how to post a simple message to your page. This will tackle all the important functionality that will create a post for your content. I will provide a sample program to show the actual coding of this tutorial.

This tutorial is simple and easy to understand just follow the instruction I provided and you can do it without a problem. This program can be use to any system or application if you wan to add a newsfeed feature. I will give my best to provide you the easiest way of creating this program Post Message in your Page. So let's do the coding.

Before we get started:

Here is the link for the template that i used for the layout design https://getbootstrap.com/.

Creating The Interface

This is where we will create a simple interface for our application. This code will only display the html form inputs and div content for your post result. To create this simply copy and write it into your text editor, then save it 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">How to Create a Post in your Page</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-8">
  17. <div class="alert alert-info">NEWSFEED</div>
  18. <div id="result"></div>
  19. </div>
  20. <div class="col-md-4">
  21. <form>
  22. <div class="form-group">
  23. <label>Name</label>
  24. <input type="text" id="name" class="form-control" />
  25. </div>
  26. <div class="form-group">
  27. <label>Content</label>
  28. <textarea id="content" class="form-control" style="resize:none; height:150px;">
  29. </div>
  30. <center><button type="button" class="btn btn-primary" onclick="postToPage();">Post</button></center>
  31. </form>
  32. </div>
  33. </div>
  34. <script src="script.js"></script>
  35. </body>
  36. </html>

Creating JavaScript Function

This is where the main function of the application is. This code will allow you to post a content when submit the form inputs. To do this just copy and write these block of codes inside the text editor and save it as script.js.
  1. function postToPage(){
  2. var name=document.getElementById('name').value;
  3. var content=document.getElementById('content').value;
  4.  
  5. if(name =="" || content ==""){
  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(content);
  14. el_name.appendChild(txt_name);
  15. el_message.appendChild(txt_message);
  16. el_line.style.border='1px solid #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('content').value="";
  25. }
  26.  
  27. }

In the code provided we just only create one method called postToPage(). This function will display the data you have been submitted from the forms. The function use a simple trick that will allow you to display your post content. We use a function called createElement(), this will dynamically create a new element. Then we use createTextNode() function that will create a new text for your newly create element, and last we will use the appendChild() that will append the contents to the targeted div element.

Output:

The How to Create a Post in your Page using JavaScript source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How to Create a Post in your Page 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!

More Tutorials for JavaScript Language

JavaScript Tutorials

Add new comment