I use slideToggle to toggle div's of content and I was wondering how I would be able to change between two images, one being a plus (+) sign, to click to display the content and a minus (-) sign to hide the content.
Any help is appreciated.
This is what I have to toggle one of the div's
$(document).ready(function() {
$('#planning-click').click(function() {
$("#planning").slideToggle(100);
});
});