我的 Jquery 动画不工作,没有显示任何内容

My Jquery animation is not working, nothing is showing up

$("#run_anim").click(function(){
  var box = $('.anim_box')
  box.show()
  //going to add more this is just for testing
})

在我的网站上 (torin.eschweb.com) 我正在尝试制作动画,到目前为止,我所拥有的只是在您按下按钮时显示 div 的部分,但没有显示任何内容.

请将添加事件侦听器包装到 jQuery ready method

$(document).ready(function() {
  $("#run_anim").click(function(){
    var box = $('.anim_box')
    box.show()
    //going to add more this is just for testing
  });
});