vote up 5 vote down star
5

Is there a better, more jQuery-ish way of handling this image substitution?

var image = $(obj).children("img");
if ($(image).attr("src") == "Images/TreeCollapse.gif")
   $(image).attr("src", "Images/TreeExpand.gif");
else
   $(image).attr("src", "Images/TreeCollapse.gif");
flag

7 Answers

vote up 9 vote down check

Why set a variable when it isn't needed?

$(obj).children("img").toggle(
  function(){ $(this).attr("src", "Images/TreeExpand.gif"); },
  function(){ $(this).attr("src", "Images/TreeCollapse.gif"); }
);
link|flag
Awesome! I wasn't aware of jQuery.toggle(fn1, fn2, ...) – orip Dec 4 '08 at 16:06
Depending with how many times you're looking to call obj, you might want to just place whatever obj is equal to before children("img"), as that's another variable that may not need to be called. Not sure of the logic behind it, though. Your call :) – Josh Dec 4 '08 at 16:09
I like! I also wasn't aware of that toggle parameter set. Thanks! – Jeremy B. Dec 4 '08 at 19:58
This is a great function, but when I use it, it only toggles every other time if trigger it (I think). I have bound a function to the click event of an image, in that function i .toggle a div and I .toggle the image src, just like this. Every time I click the div is .toggle:ed but the image is only swapped every other time, at the same time that the div is shown. Any ideas? – Cros Jul 3 at 15:12
vote up 1 vote down

You could do something like this

e.g

$(function()
    {
       $(obj)
       .children("img")
       .attr('src', swapImage );    
    });

function swapImage(){
    return ( 
              $(this).attr('src') == "Images/TreeCollapse.gif" ?
                                     "Images/TreeExpand.gif" :
                                     "Images/TreeCollapse.gif");
}

N.B in your question you do $(image) multiple times. Its better to cache the lookup in a var e.g var $image=$(obj).children("img"); then use the $image from there on in.

link|flag
vote up 1 vote down

Your image object would already be a jQUery instance so there is no need for you to pass it through $(...) again.

A good practice is to prepend variables that are jquery instances with $ and use them directly thereafter.

var $image = $(obj).children("img");
if ($image.attr("src") == "Images/TreeCollapse.gif")
   $image.attr("src", "Images/TreeExpand.gif");
else
   $image.attr("src", "Images/TreeCollapse.gif");
link|flag
vote up 1 vote down

More jQueryish? Maybe! Clearer? I'm not sure!

var image = $(obj).children("img");
$(image).toggle(
  function () { $(image).attr("src", "Images/TreeExpand.gif");},
  function () { $(image).attr("src", "Images/TreeCollapse.gif");}
);
link|flag
vote up 0 vote down

Not really.

I know... extremely helpful answer. What you are doing is pretty succinct and I'm not so sure there would be anything to make it more "jQueryish" as you ask.

now depending on how you are iterating through this if you are doing it to multiple image instances, that is where there might be some jQuery optimizations.

link|flag
vote up 0 vote down

Possible alternatives:

  • Use toggleClass and put the images in stylesheet as background images.
  • Use 2 images and toggle them.
link|flag
vote up 0 vote down

Wow. Answers come flying in, don't they? All of the above would work, but you could try this for a one-liner (it's untested)...

image.attr("src", "Images/Tree" + ((image.attr("src").indexOf("Collapse")>0) ? "Expand" : "Collapse") + ".gif");

Update: I've just tested this and it works, so would the person who voted it down care to explain why they did that?

link|flag

Your Answer

Get an OpenID
or

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