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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:40:16+00:00 2026-06-03T19:40:16+00:00

My code below works in Firefox to toggle a border on an image,but does

  • 0

My code below works in Firefox to toggle a border on an image,but does not work in IE. Any ideas why ? In IE, the first click will add the border, but the second click will not remove the border again.

Thanks,
Leslie

<html>
<head>

<script type="text/javascript">

window.onload=function(){

    for(var i = 0; i < document.images.length; i++){
        document.images[i].onclick=function(){
        if(this.style.border == '2px solid red')
        {
            this.style.border='';
        }
        else this.style.border='2px solid red';
        }
    }

}

</script>

</head>
<body>
    <div>
        <img src="Cat.jpg" width="250"/>
        <img src="Dog.jpg" width="250"/>
        <img src="Fish.jpg" width="250"/>
    </div>

</body>
</html>
  • 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-03T19:40:17+00:00Added an answer on June 3, 2026 at 7:40 pm

    You’ve used if(this.style.border == '2px solid red'), and it’s rigth for FF but
    IE returns red 2px solid so if condition doesn’t match with IE. You may try this

    window.onload=function(){
    for(var i = 0; i < document.images.length; i++)
    {
        document.images[i].onclick=function(){
            if(this.style.borderColor == 'red' && this.style.borderStyle=='solid' && this.style.borderWidth=='2px')
            {
                this.style.border='none';
            } 
            else this.style.border='2px solid red';
          }
        }
    }
    

    DEMO.

    Alternative: DEMO or DEMO (Better when you’ve other classes).

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

Sidebar

Related Questions

The code below works fine in Chrome but does not work in Firefox. The
Below code works fine in Firefox, but not in IE8. It triggers mouse click
The Jquery code below works ok with firefox, Safari, Opera but not with IE.
The below code works fine in Chrome, but doesn't work correctly in Firefox. In
The below code works fine for only the first click event. However for any
The below code works in Firefox but not in Google Chrome: <!DOCTYPE html> <html>
My code below works in firefox perfectly..but not in Safari. When I use the
I have to code below - works great in IE and Opera, but does
The code below works fine in firefox, but the list doesnt display in-line with
My Issue: The code below works for me in FireFox and Google Chrome, but

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.