/******* Do not edit this file ******* Simple Custom CSS and JS - by Silkypress.com Saved: Jun 03 2024 | 17:23:02 */ jQuery(document).ready(function() { jQuery(".toggle1").click(function() { var elem = jQuery(".toggle1").text(); if (elem == "Read More") { //Stuff to do when btn is in the read more state jQuery(".toggle1").text("Read Less"); jQuery(".text1").slideDown(); } else { //Stuff to do when btn is in the read less state jQuery(".toggle1").text("Read More"); jQuery(".text1").slideUp(); } }); }); jQuery(document).ready(function() { jQuery(".toggle2").click(function() { var elem = jQuery(".toggle2").text(); if (elem == "Read More") { //Stuff to do when btn is in the read more state jQuery(".toggle2").text("Read Less"); jQuery(".text2").slideDown(); } else { //Stuff to do when btn is in the read less state jQuery(".toggle2").text("Read More"); jQuery(".text2").slideUp(); } }); }); jQuery(document).ready(function() { jQuery(".toggle3").click(function() { var elem = jQuery(".toggle3").text(); if (elem == "Read More") { //Stuff to do when btn is in the read more state jQuery(".toggle3").text("Read Less"); jQuery(".text3").slideDown(); } else { //Stuff to do when btn is in the read less state jQuery(".toggle3").text("Read More"); jQuery(".text3").slideUp(); } }); }); jQuery(document).ready(function() { jQuery(".toggle4").click(function() { var elem = jQuery(".toggle4").text(); if (elem == "Read More") { //Stuff to do when btn is in the read more state jQuery(".toggle4").text("Read Less"); jQuery(".text4").slideDown(); } else { //Stuff to do when btn is in the read less state jQuery(".toggle4").text("Read More"); jQuery(".text4").slideUp(); } }); });