Skip to content

Instantly share code, notes, and snippets.

View unoseistres's full-sized avatar

uno seis tres unoseistres

View GitHub Profile
$(document).on("pagecreate","#section2",function(){
$("#section2").on("swiperight",function(){
$.mobile.changePage("#section1",{transition:"slide", reverse:true
});
var handler = function(event) {
if(document.getElementById(drop).style.display==="block") {
removeEventListener("swiperight", handler, false);
console.log("remove");
}
@unoseistres
unoseistres / gist:fc858f0921362c9081bd
Created April 13, 2015 03:47
.off not functioning
var foo= $(document).on("pagecreate","#section2",function(){
$("#section2").on("swiperight",function(){
$.mobile.changePage("#section1",{transition:"slide", reverse:true
});
var handler = function(event) {
if(document.getElementById('drop').style.display=="block") {
$("#section2").off( "swiperight");
console.log("remove");
}