After thoroughly checking the js tags and ensuring everything is properly closed, it's frustrating when the JavaScript suddenly stops working. The code functions perfectly in JSFiddle, leading me to believe that the issue may lie with something I've done or could possibly be related to the server. Seeking external input to confirm it's not simply an oversight on my end.
You can view the problematic site here. Below is the code snippet in question:
$(document).ready(function(){
$(".designers").show();
$('.list').hide();
});
$(".but").click(function(){
$(".designers").hide();
$(".list").show("slide", { direction: "down" }, 1000);
});
$(".but2").click(function(){
$(".designers").show();
$(".list").hide("slide", { direction: "down" }, 1000);
});