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 wnt to swap image on click,bt here if m clicking from down image to up but again its not coming on down image if m clicking on that image... m geting some error-x.attr("src") is undefined

 $(document).ready(function () {
     $('#sortdivlink').click(function () {

        var x = $("img[src$='../Images/Sort_down.png'][name='stCodeDSC']");

        if (x.attr("SRC") == "../Images/Sort_down.png") {
            x.attr('src', x.attr('src').replace("../Images/Sort_down.png", "../Images/sort_up.png"));
        }
        else {
             x.attr('src',  x.attr('src').replace("../Images/sort_up.png", "../Images/Sort_down.png"));
        }
    });
});
share|improve this question
1  
Could you show some markup please? – SiGanteng Apr 10 '12 at 14:24
what is the $ doing in the selector? "img[src$='../Images/Sort_down.png'][name='stCodeDSC'] – Timmerz Apr 10 '12 at 14:26
1  
@Timmerz its the 'attribute ends with' selector: api.jquery.com/attribute-ends-with-selector – Rory McCrossan Apr 10 '12 at 14:28
Please up vote correct answer – Ravia Apr 13 '12 at 13:49

3 Answers

up vote 1 down vote accepted

you could use a <div> with a css class with a background-image and dimensions, and use $(div).toggleClass("new-image") to use the updated background-image

that will greatly simplify your code.

[EDIT]

 <html>
    <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <style>
    .first-image
    {
       background-image: url( 'http://www.google.com/press/zeitgeist2001/google_logo.gif' );
       width:218px;
       height:90px;
       background-position:center;
       background-repeat:no-repeat;
    }

    .second-image
    {
       background-image: url( 'http://www.google.com/doodle4google/2008/images/regional_doodles/CO-80106-16a267f8-3.jpg' );
       width:350px;
       height:224px;
       background-position:center;
       background-repeat:no-repeat;
    }
    </style>

    <script>
    $(document).ready(function( ) 
    { 
        $("#target-div").click( function( ) 
        {  
           $("#target-div").toggleClass("second-image");
        });
    });
    </script>
    </head>
    <body>
    <div id="target-div" class="first-image"></div>
    </body>
    </html>
share|improve this answer
do u hav any sample for this// – SHAURAJ SINGH Apr 11 '12 at 6:47
glad you asked...posted a working version above. – Timmerz Apr 11 '12 at 6:57
thanks dude..:) – SHAURAJ SINGH Apr 12 '12 at 5:54

I would imagine this is due to the selector you're using to assign x, which is likely returning null. I would consider maybe adding an Id or CSS class to the image, and then simplifying the selector to something like this:

var x = $('img.sortDirectionImage');

Alternatively, if you know that the sortdivlink element, will only have a single image, you could simply search for an img element within the context of that element, for example:

// within the click function scope
var x = $('img', this);

Edit

Additionally, I would recommend using more recognisable variable names; you might know what x is, but the next person that comes to read your code might not.

share|improve this answer
This will also resolve the issue with finding an image by its src and then changing the src, therefore no longer finding it. – Archer Apr 10 '12 at 14:27

Look at my script I wrote long time ago (without any jQuery):

function changeImg(element) {
        var img = document.getElementById(element);
        if (img.src == "../images/expand.png") {
            // collapse
            img.src = "../images/collapse.png";
        }
        else {
            // expand
            img.src = "../images/expand.png";
        }
    }

Normal HTML-Markup:

<span onclick="changeImg('ansprechpartner');return false;">...</span>

Maybe it will work for you...

share|improve this answer

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.