この例では、最初にスワイプ機能をトリガーし、本が「押されている」かどうかを確認します。「押された」バインドを条件文に変える方法は? ありがとうございました。
$(document).swiperight(function(){
$("#book").bind("pressed", function(event) { // Change this statement to if ($("#book") is "pressed"){..}
console.log("pressed");
});
});