11

What is the equivalent to -ms-touch-action for other browsers?

Chris
  • 44,602
  • 16
  • 137
  • 156
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447

3 Answers3

10

There is now a non-prefixed touch-action property, proposed in the W3C Pointer Events Candidate recomendation.

From the MSDN documentation linked to in the OP:

As of Internet Explorer 11, the Microsoft vendor prefixed version of this event (-ms-touch-action) is no longer supported and may be removed in a future release. Instead, use the non-prefixed name touch-action, which is better for standards compliance and future compatibility.

Chris
  • 44,602
  • 16
  • 137
  • 156
  • From Google Chrome what is the value please? (show example its not helping) i have issues in windows 8.1 pro with many touch screens. –  Jun 14 '15 at 22:43
  • 1
    @YumYumYum You should be able to use `touch-action` in Chrome, see http://caniuse.com/#feat=css-touch-action. If you are having a specific issue with this property, perhaps you could possible a minimal sample which reproduces your issue as a new question. – Chris Jun 15 '15 at 08:16
  • I used touch-action. But in Ello touch screen and iiyama touch screen mouse cursor moves but when i apply touch it does not trigger click. touch-action is working in HP All in one touch screens with same Javascript code. –  Jun 15 '15 at 20:59
3

There isn't one. It's part of IE10's features for supporting custom multi-touch interactions or gestures.

Take a look at this overview of the implemented, prefixed CSS properties, and their counterparts in other web browser engines.

Krazer
  • 471
  • 7
  • 20
2

Chrome is shipping touch-action support in Chrome 35 (now in beta): http://blog.chromium.org/2014/04/chrome-35-beta-more-developer-control.html

Rick Byers
  • 3,136
  • 2
  • 16
  • 13