1


2


3


4


5


→ Your part starts here.


6


7

Add swipe listener

$(document).on("pagecreate","#pageone",function(){ 
  $(“.myphoto”).on("swipe",function(){ 
     $(this).hide(); 
  }); 
});

8


9


10


11


12

Add swipe listener

$(document).on("pagecreate","#pageone",function(){ 
  $(“.myphoto”).on("taphold",function(){ 
     $(this).hide(); 
  }); 
});

13


14


15