$(document).ready(function(){ $(".btn-toggle-moreless").each(function(){ var text_more = $(this).parent().first().data("text-more"); var text_less = $(this).parent().first().data("text-less"); $(this).text(text_more); $(this).on("click", function(){ if ($(this).text() == text_less) { $(this).text(text_less); } else { $(this).text(text_more); } }); }); });