I want to toggle class using jquery If Else statement for specified conditions.
My Html with default css class=\"horizontal\"
class=\"horizontal\"
You can use toggleClass
Live Demo
Html
Javascript
$('#foo-bar').toggleClass('vertical');