Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a image menu. I want to change the image into TD table when the link is activated.

<table width="100%">
    <tr>
        <td align="left">
            <a href="http://pinkmodels.16mb.com/">
                <img src="http://i.imgur.com/jO3ni.jpg">
            </a>
        </td>
        <td align="center">
            <a href="http://pinkmodels.16mb.com/models/">
                <img src="http://i.imgur.com/utKcC.jpg">
            </a>
        </td>
        <td align="center">
            <a href="http://pinkmodels.16mb.com/blog/">
                <img src="http://i.imgur.com/h4JGE.jpg">
            </a>
        </td>
        <td align="center">
            <a href="http://pinkmodels.16mb.com/about/">
                <img src="http://i.imgur.com/M2GE8.jpg">
            </a>
        </td>
        <td align="right">
            <a href="http://pinkmodels.16mb.com/contact/">
                <img src="http://i.imgur.com/bWoe3.jpg">
            </a>
        </td>
    </tr>
</table>
share|improve this question
2  
What have you tried so far? – Steve Wellens Sep 28 '12 at 11:24
Before anyone gets worried about the content at the other end of these links, there's nothing bad there. It's PG rated. – Kev Oct 1 '12 at 0:27

3 Answers

Instead of using <img> tags use background-image property in your CSS file.

For example,

table td a{
  background-image:url('FirstImageURL');
}

table td a:active{
  background-image:url('SecondImageURL');
}

check this link to know more about this.

you can do by assigning unique classes (or Id's) to each img tag also. Check this link.

I hope you know CSS because you haven't used anything related to it in your code :)

share|improve this answer

Two choices:

JavaScript solution:

var links = document.getElementsByTagName("a");
var n = links.length;
for(var i = 0; i < n; i ++) {
    var cur = links[i];
    if(cur.getAttribute("href") == window.location) {
        cur.parentNode.childNodes[1].src = "http://i.imgur.com/newimagesrc.png";
    }
}

CSS-only solution:

Instead of using an img tag, use a div with a background-image, HTML would look like:

<table width="100%">
    <tr>
        <td align="left"><a href="http://pinkmodels.16mb.com/">
            <div class = "image first"></div>
        </a></td>

CSS:

a:active > .image.first {
     background-image: url(newimageurl.png);
}
share|improve this answer
a:visited img ,a:active img
{
content:url('change img link as you want);
}
share|improve this answer
but i have individual images for every single button – user1706064 Sep 28 '12 at 13:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.