Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8848771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:29:21+00:00 2026-06-14T12:29:21+00:00

Does windows phone 8 fully support touch events within the default browser? Does it

  • 0

Does windows phone 8 fully support touch events within the default browser?

Does it work out of the box so that arbitrary touchmove events can be detected by a web-page?

I have had issues with some browsers which hijack the touchmove events to use for their interface as a swipe gesture. Does windows phone 8 browser do anything like that?

Can anyone point to any documentation about windows phone 8 touch events?

EDIT:

There is a page here that would allow someone with a wondows phone 8 to test the touch capabilities: http://blogs.msdn.com/b/ie/archive/2011/10/19/handling-multi-touch-and-mouse-input-in-all-browsers.aspx

I would greatly appreciate if someone could try it out and let me know if it works or not.

However, there are a couple of comments…

SnarkMaiden 20 Oct 2011 11:17 AM # Just for curiosity; I have a tablet
PC with both pen and touch – in IE9, with the pen I can draw in the
field but with my finger I can only scroll the page. Is that expected
behaviour? Ted Johnson [MSFT] 20 Oct 2011 11:28 AM #

@SnarkMaiden: Unfortunately, yes, that’s the expected behavior in IE9
and document mode 9 in IE10. IE9 has no way to override the default
panning gesture. IE10’s 10 mode has a new CSS property,
“-ms-content-zooming: none” that disables panning and zooming on the
target element. BTW, this blog runs in document mode 9 in IE10. So
even IE10 users with touch are also seeing this behavior.

So still might not work form that page, even if it is possible on the device.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T12:29:22+00:00Added an answer on June 14, 2026 at 12:29 pm

    You should take a look at here: Updating touch and pointer events (official Windows Phone developer blog post).


    EDIT: quote relevant parts of linked document

    WebKit and Internet Explorer 10 handle touch event handling differently. WebKit supports a touch interface that is separate from mouse handling; IE10 groups touch, mouse, and stylus into a single interface (pointer). The pointer event model also has been submitted to the W3C for standardization under the Pointer Events Working Group. Although they are different, the models are generally similar, so support for pointer events can generally be added with minimal code changes.

    Adding pointer event listeners

    The pointer API uses a standard “down, move, up” event model. Therefore, it’s simple to hook up listeners for existing event handlers to pointer events.

    Before

    this.element.addEventListener("touchstart", eventHandlerName, false); 
    this.element.addEventListener("touchmove", eventHandlerName, false);
    this.element.addEventListener("touchend", eventHandlerName, false);
    

    After

    if (window.navigator.msPointerEnabled) {
      this.element.addEventListener("MSPointerDown", eventHandlerName, false);
      this.element.addEventListener("MSPointerMove", eventHandlerName, false);
      this.element.addEventListener("MSPointerUp", eventHandlerName, false);
    }
    this.element.addEventListener("touchstart", eventHandlerName, false);
    this.element.addEventListener("touchmove", eventHandlerName, false);
    this.element.addEventListener("touchend", eventHandlerName, false);
    

    Turning off default touch behavior

    The pointer event model in Internet Explorer 10 requires you to explicitly indicate which areas of the page will have custom gesture handling (using the code you just added), and which will use default gesture handling (pan the page). You can do this by adding markup on elements that should opt out of default gesture handling using the -ms-touch-action property. For example:

    Before

    <div id="slider" style="overflow: hidden;">
    

    After

    <div id="slider" style="overflow: hidden; -ms-touch-action: none;">
    

    In addition to none, IE10 on Windows Phone 8 also supports the pan-x and pan-y properties, which specify that the browser should handle horizontal or vertical gestures, and custom JavaScript handlers should handle everything else.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does windows phone 7 browser support HTML5?
The MediaPlayer.GetVisualizationData method does not work for Windows Phone 7, so I'm trying to
Silverlight 4 added support for the dynamic keyword. Does Windows Phone 7 support also
Does Visual Studio 2010 support Debug Visualizers for Windows Phone (Silverlight) development? My visualizer
Does windows phone 7.5 support windows phone 7.0 apps. can we run the application
Does Windows Phone 6.5 Support XNA and Silverlight?
I'm working on Windows Phone 7 which does not support features like CUDA or
Does Windows Phone 8 NFC support Mifare Ultralight/Classic based tags? I use this code
I know that the Windows Phone 7 ListBox use VirtualizingStackPanel by default to optimize
I am developing a windows phone application. The webclient does not fire as I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.