jQuery(function($){ $('#toggleConditions').on('click', function(){ $('.more-conditions').slideToggle(); if($(this).text() == 'VIEW ALL CONDITIONS'){ $(this).text('VIEW LESS'); } else { $(this).text('VIEW ALL CONDITIONS'); } }); });