Two questions please:
1) In this example, http://jsbin.com/ijuli, how do I make it so when one image is clicked, the other un-hidden .clickSave divs go back to hidden.
2) Is there a more efficient way to write the JS code?
Jquery
$(".clickSave").hide();
$(".one").click(function() {
$(".clickSave.one").toggle();
});
$(".clickSave").hide();
$(".two").click(function() {
$(".clickSave.two").toggle();
});
$(".clickSave").hide();
$(".three").click(function() {
$(".clickSave.three").toggle();
});
Thank you so much in advance! I'm so confused by all this.