Jump to content

Newbie question about getElementById


cs.punk

Recommended Posts

Can anyone tell me if there is any difference between:

 

function changeImgOn(picID, imgSrc)
    {
        var img = document.getElementById(picID);
        img.src = imgSrc;
    }

 

or

 

function changeImgOn(picID, imgSrc)
    {
        var img = document.getElementById(picID);
        img.setAttribute("src", imgSrc);
    }

 

Where my HTML is:

 

    <img id='pic1' src='home_off.jpg'
        onmouseover='changeImgOn("pic1", "home_on.jpg")'
        onmouseout='changeImgOn("pic1", "home_off.jpg")'/>

 

They both work but just wanted to know.

 

Thank you!

Link to comment
https://forums.phpfreaks.com/topic/228651-newbie-question-about-getelementbyid/
Share on other sites

haha could be done in CSS Completely like HAKU said, I'll show you an example (without CSS:background-image hacks or CSS:background-position hacks)

 

<style type="text/css">
a img { border: none; }
a .dn { display: none; }
a:hover .dn { display: block; }
a:hover .up { display: none; }
</style>
<a href="link.html">
<img class='up' src="linkUp.gif" />
<img class='dn' src="linkDn.gif" />
</a>

 

oh and to answer your question.. You're most likely better off using .src as setAttribute might not be supported by all browsers

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.