// JavaScript Document $(function() { $('.backbtn').on('click',function(){ location.href = "../index"; }); $('.backbtn_2').on('click',function(){ location.href = "../../index"; }); $('.closebtn').on('click',function(){ window.close(); }); $('.bigbtn').on({ 'mouseenter':function(){ $(this).fadeTo('fast',.3); }, 'mouseleave':function(){ $(this).fadeTo('fast',1); } }); });