File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/show-hide-content/includes/js/shc_protect_message.js
// Logic to display and hide copyright message

jQuery(function() {
	
    jQuery(document).on("click", ".shc_Ok", function(e){
  	
	var a = jQuery( this ); 
	a.closest(".shc_mybox").addClass("shc_new");
	var image = jQuery(".shc_new").find("p");
	jQuery(".shc_new").find("p").fadeIn(600);
	
	a.unwrap();
	a.hide();
	a.closest(".shc_mybox").removeClass("shc_new");
	
	}); //end of click event function

}); //end of document