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
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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.