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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T21:01:39+00:00 2026-06-15T21:01:39+00:00

Ok so I’m going to try and make this as clear as possible. I

  • 0

Ok so I’m going to try and make this as clear as possible. I want to write a function that when called will add an onmouseout attribute to an image.

Before the image is moused over.

<img src="myfile.jpg" onmouseover="function()" />

After

<img src="myfile.jpg" onmouseover="function()" onmouseout="anotherFunction()" />

I would also like to change the picture with function() and then onmouseout set the picture back to the original. I know how to change the pictures with onmouseover and onmouseout right in the image code but I’m trying to simplify this as I have to do the image changy thing about 100 times and I dont want to write out the code that many times. Gah I hope that was clear.

  • 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-15T21:01:40+00:00Added an answer on June 15, 2026 at 9:01 pm

    Here we go http://jsfiddle.net/5U9w9/2/

    I’m going to update the jsFidle with more comments and will update the link here too.

    javascript

    // grab all the required element on the page
    var img_all = document.getElementsByTagName('img');
    
    // for every element do this
    for (i=0; i< img_all.length; i++){
        var img = img_all[i];
        // set the required event on the element
        // when the event of the element occurs, the associated function will be called with event object as it's argument.
        // https://developer.mozilla.org/en-US/docs/Mozilla_event_reference
        //img.addEventListener('mouseover', mouseover_handler, false);
        AddEvent(img, 'mouseover', mouseover_handler) 
    
        //mouseout_handler will be called, on mouseout event
        // img.addEventListener('mouseout', mouseout_handler, false);
        AddEvent(img, 'mouseout', mouseout_handler)
    }
    
    
    function mouseover_handler(e){
        // el is and event object and has various properties like clientX, clientY, srcElement, etc. you can check them by console.log(el)
        console.log(e)
    
        // to get the element i'm hovering, use
        var element = e.srcElement;
    
        //element is DOM element and can be manupulated
        element.style.width="100px";
    }
    
    // similarly handler for an another event.
    function mouseout_handler(e){
        e.srcElement.style.width="50px";
    }
    
    ​// cross-browser addEventListner
    function AddEvent(html_element, event_name, event_function) 
    {       
       if(html_element.attachEvent) //Internet Explorer
          html_element.attachEvent("on" + event_name, function() {event_function.call(html_element);}); 
       else if(html_element.addEventListener) // Everything else
          html_element.addEventListener(event_name, event_function, false);
    }
    

    Update

    • Use AddEvent in the place of addEventListner() for IE support.​ (CREDIT: @James Hill’s answer)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I need a function that will clean a strings' special characters. I do NOT
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into
I know there's a lot of other questions out there that deal with this
I want to construct a data frame in an Rcpp function, but when I
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text

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.