JavaScript - Display Message Within 5 Seconds
Submitted by razormist on Thursday, June 13, 2019 - 09:58.
In this tutorial we will create a Display Message Within 5 Seconds using JavaScript. This code will immediately display a message when the user click the button and after a certain period of time it disappear. The code use a jQuery plugin setTimeout() function to manipulate the time when it is initiate in order to change any properties of an element. 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.
There you have it we successfully created a Display Message Within 5 Seconds 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!
Getting Started:
This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/. And this is the link for the jquery that i used in this tutorial https://jquery.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.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1" />
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dottec #ccc;"/>
- <div class="col-md-8">
- </div>
- </div>
- </body>
- </html>
Creating the Script
This code contains the script of the application. This code will display 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- $(document).ready(function(){
- $('#display').on('click', function(){
- var message = $('<div style="width:100%; height:200px;" class="alert alert-info"><center style="margin-top:50px;"><h2>Welcome to SOURCECODESTER</h2></center></div>');
- $('#result').html(message);
- $(this).removeAttr('id');
- setTimeout(function(){
- message.fadeOut();
- $('#display').attr('id', 'display');
- }, 5000)
- });
- })
Add new comment
- 1181 views