http://jsfiddle.net/rusticblonde/zg4JG/26/
$( "#infodiv" ).click(function() {
$( "#div2" ).slideToggle( "slow", function() {
});
$("#infodiv").click(function() {
$("#div2 #div1").css("webkit-filter", "none")
});
});
Hi there,
ive done a fiddle where on click i want to on click display a box with information, and change the colour back to its original. I seem to have got the click box working, however it doesnt change back to its original colour.
I currently have this on hover, but want to not do it with css if i can.
Any ideas if i have missed a tag?