tag
Long-Tail Keyword Pro
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 2
1000 XP
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.
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.
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
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!
Download
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/.
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"
>
- <a
class
=
"navbar-brand"
href
=
"https://sourcecodester.com"
>
Sourcecodester</
a
>
- </
div
>
- </
nav>
- <div
class
=
"col-md-3"
></
div
>
- <div
class
=
"col-md-6 well"
>
- <h3
class
=
"text-primary"
>
JavaScript - Display Message Within 5 Seconds</
h3
>
- <hr
style
=
"border-top:1px dottec #ccc;"
/
>
- <div
class
=
"col-md-2"
></
div
>
- <div
class
=
"col-md-8"
>
- <button
class
=
"btn btn-primary"
id
=
"display"
>
Show Message</
button
>
- <br
/
><br
/
>
- <div
id
=
"result"
></
div
>
- </
div
>
- </
div
>
- <script
src
=
"js/jquery-3.2.1.min.js"
></
script
>
- <script
src
=
"js/script.js"
></
script
>
- </
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
)
- }
)
;
- }
)
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!
Download
You must upgrade your account or reply in the thread to view the hidden content.