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

  • Home
  • SEARCH
  • 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 9133755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:32:32+00:00 2026-06-17T08:32:32+00:00

I am having a code in _layout.cshtml . @if (TempData[SuccessMessage] != null) { <div

  • 0

I am having a code in _layout.cshtml.

@if (TempData["SuccessMessage"] != null)
{
    <div class="alert alert-success">
        @TempData["SuccessMessage"];
    </div>
}

And in javascript

$(function() {
    $(".alert alert-success").fadeOut("slow");
});

But the div is not fading out. Please suggest what I am doing wrong.

  • 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-06-17T08:32:33+00:00Added an answer on June 17, 2026 at 8:32 am

    jQuery Docs – Class Selectors has an example that is quite relevant (Finds the element with both “myclass” and “otherclass” classes.)

    Try changing:

    $(function () {
      $(".alert alert-success").fadeOut("slow");
    });
    

    To:

    $(function () {
      $(".alert.alert-success").fadeOut("slow");
    });
    

    or you could try .filter():

    $(".alert").filter(".alert-success")
    

    However, this method will be slightly slower since you are first compiling a set of all match .alert elements and then filtering those to compile a second set or those containing .alert-success.

    Find more info in a similar post here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using VS2010 Ultimate. Having code: //file IntSet.h #include stdafx.h #pragma once /*Class representing
Having php code: function getChildren($parent_id = 0) { .... return $SomeChildrenArray; } And Smarty
Having this code: $main = !empty($searchResults['main']) ? $searchResults['main'] : null; $second = !empty($searchResults['second']) ?
Having this code : Models paciente.rb class Paciente include SimplyStored::Couch has_many :consultas end consulta.rb
Having code: struct B { int* a; B(int value):a(new int(value)) { } B():a(nullptr){} B(const
Having code: Date::Date(const char* day, const char* month, const char* year):is_leap__(false) { my_day_ =
Having code: int** a = new int*[2]; a[0] = new int(1); a[1] = new
I'm often having code written as follows try: self.title = item.title().content.string except AttributeError, e:
I am having code NSString *cellValue1 = [products1 objectAtIndex:indexPath.row]; when i try to print
Having this code: using (BinaryWriter writer = new BinaryWriter(File.Open(ProjectPath, FileMode.Create))) { //save something here

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.