JavaScript - Reorder Element Position

In this tutorial we will create a Reorder Element Position using JavaScript. This code will reorder the element position to a new placement when user click the button. The process use JavaScript onclick() function to call a specific method that use for() loop to compress an array and reorder the index in order to display it different. You can apply this script to your system that use image gallery, this 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 html>
  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">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Reorder Element Position</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-3"><center><button class="btn btn-primary" type="button" onclick="arrOrder()">Reorder</button></center></div>
  17. <div class="col-md-3"></div>
  18. <div class="col-md-5">
  19. <div id="result"></div>
  20. <br />
  21.  
  22. </div>
  23. </div>
  24. <script src="js/script.js"></script>
  25. </body>
  26. </html>

Creating the Script

This code contains the script of the application. This code will reorder the element position 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. displayItem();
  2.  
  3. function displayItem(){
  4. var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
  5. var html = "";
  6. for(var i=0; i<arr.length; i++){
  7. html += "<div width='200' height='200' style='border:1px solid #000; padding:10px; margin:10px; font-size:50px; float:left;'>"+arr[i]+"</div>";
  8. }
  9. html += "<br style='clear:both;'/>";
  10.  
  11. document.getElementById('result').innerHTML = html;
  12. }
  13.  
  14. function arrOrder(){
  15. var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
  16. var html = "";
  17. arrayRear(arr).forEach(function(item){
  18. html += "<div width='200' height='200' style='border:1px solid #000; padding:10px; margin:10px; font-size:50px; float:left;'>"+item+"</div>";
  19. })
  20. html += "<br style='clear:both;'/>";
  21.  
  22. document.getElementById('result').innerHTML = html;
  23. }
  24.  
  25. function arrayRear(arr) {
  26. for (var i = 0, rear = [], randomIndex = 0; i < arr.length; i++) {
  27. randomIndex = Math.floor(Math.random() * arr.length);
  28. while (rear.indexOf(arr[randomIndex]) !== -1) {
  29. randomIndex = Math.floor(Math.random() * arr.length);
  30. }
  31. rear.push(arr[randomIndex]);
  32. }
  33.  
  34. return rear;
  35. }
There you have it we successfully created a Reorder Element Position 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