I have an element which works only ontouch(start), and I want to make that onclick will trigger ontouch (for non-touchable devices, such as my pc). like:
element.onclick = element.touchStart();
or:
element.onclick = element.touch();
Is something like this possible?