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
You can bind both at once...
$('obj').bind('touchstart mousedown', function(e){
});
If you want to mousedown event to fire touchstart events automatically (so you only need to bind touchstart) use...
$(document).bind('mousedown', function(event) {
$(event.target).trigger('touchstart');
});
Note that this means mousedown events must propagate to document before the custom touchstart event can be triggered. This could have unexpected side effects.