Currently it opens one slider and closes the other. I want sliders to stay open until I manually close them. http://jsfiddle.net/spalagani/vsyaa4fj/ ====
Hey there! You need to change this line: if ($('.accordion_body').is(':visible')) { to if ($(this).find('.accordion_body').is(':visible')) { With the old code you're closing every accordion div every time you open a new one. With the new code you only close the div the user clicked on. Good luck!