JavaScript - Create URL Link

In this tutorial we will create a Create URL Link using JavaScript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is a text-based programming language meant to run as part of a web-based application. It is an interpreted programming language that has a capabilities of Object-Oriented. So Let's do the coding...

Getting started:

This is the link for the jquery that i used in this tutorial https://jquery.com/. Lastly, 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.         <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  4.         <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  5.         <nav class="navbar navbar-default">
  6.                 <div class="container-fluid">
  7.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  8.                 </div>
  9.         </nav>
  10.         <div class="col-md-3"></div>
  11.         <div class="col-md-6 well">
  12.                 <h3 class="text-primary">JavaScript - Create URL Link</h3>
  13.                 <hr style="border-top:1px dotted #ccc;"/>
  14.                 <div class="form-inline">
  15.                         <input type="text"  placeholder="Name" id="name" class="form-control"/>
  16.                         <input type="text" placeholder="URL" id="url" class="form-control"/>
  17.                         <button type="button" id="create" class="btn btn-success"><span class="glyphicon glyphicon-link"></span> Create Link</button>
  18.                 </div>
  19.                 <br />
  20.                 <h4>Links</h4>
  21.                 <div id="result"></div>
  22.         </div>
  23. <script src="js/jquery-3.2.1.min.js"></script>
  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 create a link base on what the user have been inputted 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 folder.
  1. $(document).ready(function(){
  2.         $('#create').on('click', function(){
  3.                 var name = $('#name').val();
  4.                 var url = $('#url').val();
  5.                
  6.                 if(name == "" || url == ""){
  7.                         alert("Please enter something first");
  8.                 }else{
  9.                         $('#result').append("<a href='"+url+"' target='_blank'>"+name+"</a><br />");
  10.                         $('#name').val('');
  11.                         $('#url').val('');
  12.                 }
  13.         });
  14. });
There you have it we successfully created a Create URL Link 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