$(document).on("touchmove", carditem_s3, function(e) {
...
}).bind('touchend', function(){
...
});
$(document).on("touchmove", carditem_s3, function(e) { ... });
$(document).bind('touchend', function() { ... });
То есть, привязка обработчика touchend выполняется ко всему документу, без каких либо ограничений.