In my code the html of the is set to “show more” on the page it self. After I click it it, it changes to “hide”
When I click it again I am trying to set it back to “show more” Not sure on how to do it after it hides from the toggle.
$(".show").click( function() {
$("#men").children().toggle('slow');
$(".show").html("hide");
});
You can use the
togglemethod to bind multiple click events.