Skip to content

Instantly share code, notes, and snippets.

@QuestionDevelopment
Created August 23, 2013 19:57
Show Gist options
  • Save QuestionDevelopment/6323340 to your computer and use it in GitHub Desktop.
Save QuestionDevelopment/6323340 to your computer and use it in GitHub Desktop.
function changeBG(theid){
if(theid.style.backgroundImage == 'url(images/expand.jpg)') {
var your_image = 'images/collapse.jpg';
theid.style.backgroundImage="url('"+your_image+"')";
}
else {
var your_image = 'images/expand.jpg';
theid.style.backgroundImage="url('"+your_image+"')";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment