ÿØÿà JFIF ` ` ÿþ
Server : Apache/2 System : Linux vps.phamthanh.local 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 User : benhviencoc7 ( 1008) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/benhviencoc7/public_html/data/javascripts/ |
Upload File : |
$(function(){ $(".tab li").click(function(){ switch(this.id){ case "hview": $("#hview").addClass("active"); $("#hnew").removeClass("active"); $("#hfree").removeClass("active"); $("table.hview").show(); $("table.hnew").hide(); $("table.hfree").hide(); break; case "hnew": $("#hview").removeClass("active"); $("#hnew").addClass("active"); $("#hfree").removeClass("active"); $("table.hview").hide(); $("table.hnew").show(); $("table.hfree").hide(); break; case "hfree": $("#hview").removeClass("active"); $("#hnew").removeClass("active"); $("#hfree").addClass("active"); $("table.hview").hide(); $("table.hnew").hide(); $("table.hfree").show(); break; } return false; }); });