vote up 3 vote down star

I am making an expand/collapse call rates table for the company I work for. I currently have a table with a button under it to expand it, the button says "Expand". It is functional except I need to button to change to "Collapse" when it is clicked and then ofcourse back to "Expand" when it is clicked again. The writing on the button is a background image.

So basically all I need is to change the background image of a div when it is clicked, except sort of like a toggle. Any help would be greatly appreciated!

flag

4 Answers

vote up 7 vote down

$('#divID').css("background-image", "url(/myimage.jpg)");

Should do the trick, just hook it up in a click event on the element

$('#divID').click(function() { // do my image switching logic here. });

link|flag
vote up 5 vote down

One way to do this is to put both images in the HTML, inside a SPAN or DIV, you can hide the default either with CSS, or with JS on page load. Then you can toggle on click. Here is a similar example I am using to put left/down icons on a list:

$(document).ready(function(){
    $(".button").click(function () {
    	$(this).children(".arrow").toggle();
            return false;
    });
});

<a href="#" class="button">
    <span class="arrow">
        <img src="/images/icons/left.png" alt="+" />
    </span>
    <span class="arrow" style="display: none;">
        <img src="/images/down.png" alt="-" />
    </span>
</a>
link|flag
vote up 3 vote down

If you use a CSS sprite for the background images, you could bump the background offset +/- n pixels depending on whether you were expanding or collapsing. Not a toggle, but closer to it than having to switch background image URLs.

link|flag
1  
Bonus: Ifyou use separate images only the one that is displayed on load is actually loaded. There will be a small delay when switching images before the second state is loaded. With a sprite, you only have one image and it will already be there. – _Lasar Oct 31 '08 at 15:29
vote up 1 vote down

This works on all current browsers on WinXP. Basically just checking what the current backgrond image is. If it's image1, show image2, otherwise show image1.

The jsapi stuff just loads jQuery from the Google CDN (easier for testing a misc file on the desktop).

The replace is for cross-browser compatibility (opera and ie add quotes to the url and firefox, chrome and safari remove quotes).

<html>
    <head>
    	<script src="http://www.google.com/jsapi"></script>
    	<script>
    	  google.load("jquery", "1.2.6");
    	  google.setOnLoadCallback(function() {
    		var original_image = 'url(http://stackoverflow.com/Content/img/wmd/link.png)';
    		var second_image = 'url(http://stackoverflow.com/Content/img/wmd/code.png)';

    		$('.mydiv').click(function() {
    		    if ($(this).css('background-image').replace(/"/g, '') == original_image) {
    		        $(this).css('background-image', second_image);
    		    } else {
    		        $(this).css('background-image', original_image);
    		    }

    			return false;
    		});
    	  });
    	</script>

    	<style>
    		.mydiv {
    			background-image: url('http://stackoverflow.com/Content/img/wmd/link.png');
    			width: 100px;
    			height: 100px;
    		}
    	</style>
    </head>
    <body>
    	<div class="mydiv">&nbsp;</div>
    </body>
</html>
link|flag
putting Jquery on your site isn't that hard, why would you wanna load it off Google? – Nick Oct 31 '08 at 14:42
just did it for the example. This way, the whole code snippet works on its own. – enobrev Oct 31 '08 at 14:44
4  
Loading it from Google is preferable for public facing sites. Google's CDN is very likely faster than your site, allows it to download in parallel with something else on your site, and the more sites that use it the more likely a cached copy from the user's browser will be used. – Dave Ward Oct 31 '08 at 15:32

Your Answer

Get an OpenID
or

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