I have the following click event. I would also like to toggle the background-position: between top and bottom on click.
$('.close').click(function () {
$('.banner-inner-content').slideToggle('slow', function () {
});
});
So how can i toggle between?
.close{background-position:top}
and
.close{background-position:bottom;}