var isTouch = ('ontouchstart' in window || (window.DocumentTouch && document instanceof DocumentTouch)) ? true : false,
pushstart = isTouch ? "touchstart" : "mousedown",
pushend = isTouch ? "touchend" : "mouseup";
$(".content").click(function(e){ ... }
$(".content").bind(pushend, function(e){ ... }