Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 798791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:01:44+00:00 2026-05-14T23:01:44+00:00

I am trying to right a script for a notification popup. I wan’t the

  • 0

I am trying to right a script for a notification popup. I wan’t the popup to fade out after X seconds or fadeout when the user clicks on the message. I can get both effects to work individually but when I try to combine them fadeOut works. This is my code so far:

function notify(data, type) {
 switch(type) {
 case "success":
  $('#notify').html(data)
  .removeAttr("style")
  .addClass('notifySuccess')
  .click(function() {
$("#notify").fadeOut();
  })
  .delay(5000).fadeOut();
break;
 case "error":
  $('#notify').html(data)
  .removeAttr("style")
  .addClass('notifyFailure')
  .click(function() {
$("#notify").fadeOut();
  })
  .delay(5000).fadeOut();
break;
}
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T23:01:44+00:00Added an answer on May 14, 2026 at 11:01 pm

    You need a .stop() in there to clear the delay out of the queue, like this:

    function notify(data, type) {
     switch(type) {
     case "success":
      $('#notify').html(data)
      .removeAttr("style")
      .addClass('notifySuccess')
      .click(function() {
        $("#notify").stop(true, true).fadeOut();
      })
      .delay(5000).fadeOut();
    break;
     case "error":
      $('#notify').html(data)
      .removeAttr("style")
      .addClass('notifyFailure')
      .click(function() {
        $("#notify").stop(true, true).fadeOut();
      })
      .delay(5000).fadeOut();
    break;
    }
    }
    

    Also, if you only have success and error for types, you can shorten this down a great deal, like this:

    function notify(data, type) {
     $('#notify').html(data)
       .removeAttr("style")
       .addClass(type == 'success' ? 'notifySuccess' : 'notifyFailure')
       .delay(5000).fadeOut()
       .click(function() {
         $(this).stop(true, true).fadeOut();
       });
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm relatively new to Mercurial and my team is trying it out right now
Right now I'm trying to figure out a way to do things smarter, and
Right now I am trying to call my model, and spit out its results
I'm trying to create a script that will delete all user properties for a
Right, I'm trying to write a wee script in PHP that will send an
I am trying to right align a control in a StatusStrip . How can
I'm trying to display an address right aligned in the footer of my page
I'm trying to design some bookmarklets right now, that connect back to a server
Right, I'm trying to get a label with text in it (done already obviously),
I am trying to fire an event on the right and left arrow key

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.