You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
312 B

  1. $(document).ready(function(){
  2. $(".packagelist").on("touchstart",function(){
  3. var index = $(this).index();
  4. $(".packagelist").removeClass("on");
  5. $(this).addClass("on");
  6. $(".disneylistgrid").hide();
  7. $(".disneylistgrid").eq(index).fadeIn();
  8. })
  9. // $(".aclick").on("touchstart",function(){
  10. // })
  11. })