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 7016485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:47:30+00:00 2026-05-27T22:47:30+00:00

I know this is such a lame question to ask, but it seems like

  • 0

I know this is such a lame question to ask, but it seems like I’m having trouble getting my brain back in gear after the Christmas period.

Simple question, I’m using the jQuery .error event to replace broken images using this bit of script

    $('#slideshowContainer img[name=imgStockItem]').error(function(){
         $(this).attr('src', '/assets/images/no-image-large.png');
    });

What I really want to do is have something like an if/else deal, where if the image is broken do this, else, do this.

I tried this:

   if($('#slideshowContainer img[name=imgStockItem]').error()){
          alert("true");
   } else {
          alert("false");
   }

But that just returns a true everytime, broken image or not.

Any ideas please?

  • 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-27T22:47:31+00:00Added an answer on May 27, 2026 at 10:47 pm

    The .error() event means.. error.

    To know if image was loaded successfully, handle the .load event.

    Now comes the tricky part.. to have jQuery (or JavaScript in general) trigger any of those events, you’ll have to manually assign the image src otherwise it will be “too late”.

    So, have such image tag:

    <img name="imgStockItem" my_src="image_source_here.png" />
    

    Then such code:

    $(document).ready(function() {
        $('#slideshowContainer img[name=imgStockItem]').each(function(index) {
            $(this).error(function() {
                $(this).attr('src', '/assets/images/no-image-large.png');
                $("#StatusDiv").append("image #" + (index + 1) + " is broken<br />");
             });
    
            $(this).load(function() {
                $("#StatusDiv").append("image #" + (index + 1) + " loaded successfully<br />");
            });
    
            $(this).prop("src", $(this).attr("my_src"));
        });
    });
    

    StatusDiv is just example for container showing the status of each image.

    Live test case.

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

Sidebar

Related Questions

This seems like such a simple question, but I'm having such difficulty with it.
I know this is such a silly question but I tried every bracket I
I know this question has been discussed before, and I know this is such
i know this is a stupid question but i d'ont know how to do
I know this is an old question, but I have spend any hours on
I know this is repeated question on Stack. But in my case the URL
I know this is an oft asked question, but I've tried some of the
I know this might seem like hw question, and be my guest to treat
I know this error is usually a problem with unclosed quotes and such, but
I know this question sounds bizarre, but that's what my manager told me. When

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.