• Register now to get access to thousands of Tutorials, Leaked content, Hot NSFW and much more. Join us as we build and grow the community.

JavaScript - Display Message Within 5 Seconds

tag

Long-Tail Keyword Pro
T Rep
0
0
0
Rep
0
T Vouches
0
0
0
Vouches
0
Posts
160
Likes
156
Bits
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.
  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. <body

    >
  8. <nav class

    =

    "navbar navbar-default"

    >
  9. <div

    class

    =

    "container-fluid"

    >
  10. <a

    class

    =

    "navbar-brand"

    href

    =

    "https://sourcecodester.com"

    >

    Sourcecodester</

    a

    >
  11. </

    div

    >
  12. </

    nav>
  13. <div

    class

    =

    "col-md-3"

    ></

    div

    >
  14. <div

    class

    =

    "col-md-6 well"

    >
  15. <h3

    class

    =

    "text-primary"

    >

    JavaScript - Display Message Within 5 Seconds</

    h3

    >
  16. <hr

    style

    =

    "border-top:1px dottec #ccc;"

    /

    >
  17. <div

    class

    =

    "col-md-2"

    ></

    div

    >
  18. <div

    class

    =

    "col-md-8"

    >
  19. <button

    class

    =

    "btn btn-primary"

    id

    =

    "display"

    >

    Show Message</

    button

    >
  20. <br

    /

    ><br

    /

    >
  21. <div

    id

    =

    "result"

    ></

    div

    >
  22. </

    div

    >
  23. </

    div

    >
  24. <script

    src

    =

    "js/jquery-3.2.1.min.js"

    ></

    script

    >
  25. <script

    src

    =

    "js/script.js"

    ></

    script

    >
  26. </

    body

    >
  27. </

    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
  1. $(

    document)

    .ready

    (

    function

    (

    )

    {
  2. $(

    '#display'

    )

    .on

    (

    'click'

    ,

    function

    (

    )

    {
  3. var

    message =

    $(

    '<div style="width:100%; height:200px;" class="alert alert-info"><center style="margin-top:50px;"><h2>Welcome to SOURCECODESTER</h2></center></div>'

    )

    ;

  4. $(

    '#result'

    )

    .html

    (

    message)

    ;
  5. $(

    this

    )

    .removeAttr

    (

    'id'

    )

    ;
  6. setTimeout(

    function

    (

    )

    {
  7. message.fadeOut

    (

    )

    ;
  8. $(

    '#display'

    )

    .attr

    (

    'id'

    ,

    'display'

    )

    ;
  9. }

    ,

    5000

    )
  10. }

    )

    ;
  11. }

    )

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.
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

452,512

356,407

356,429

Top
Raidforums