I\'m working on a personal project and I\'m having a small issue:
This is my code code and currently works: http://jsfiddle.net/gvM3b/:
$(\".show-mor
Update your jQuery:
$(".show-more").click(function () { if($(".text").hasClass("show-more-height")) { $(this).text("(Show Less)"); } else { $(this).text("(Show More)"); } $(".text").toggleClass("show-more-height"); });
See http://jsfiddle.net/gvM3b/1/