Skip to content

Instantly share code, notes, and snippets.

View benjskim's full-sized avatar

Ben benjskim

  • Los Angeles, CA
View GitHub Profile
$(function() {
$(".moreabout").click(function(){
if ($(".moreabout").text() == "Read More")
{
$(".moreabout").text("Read Less");
} else
{
$(".moreabout").text("Read More");
}
$(".moreabouttext").slideToggle();