As touchstart/touchend is yet not supported in most of the desktop browsers. How can I create touchstart event that will be the same as mousedown event (that is supported in all browsers).
I want something like this
$('obj').bind('touchstart', function(e){
});
will be translated into
$('obj').bind('mousedown', function(e){
})