Yes, if the device and browser expose touch or pointer input, for example a touchscreen monitor or a 2-in-1 laptop. On a plain mouse you will see pointerType mouse.
Test touch points, pressure and multitouch support
A touchscreen is really two parts: the display that shows the image and the digitizer that senses where your finger lands. When that digitizer develops a dead spot, starts registering phantom touches, or drops simultaneous contacts, the symptoms are easy to mistake for a software bug. This tool uses the browser's Pointer Events API with touch-action none over the test area, which stops the page from scrolling and renders every contact as a circle. You can then watch, live and with nothing to install, how many fingers the device recognizes at once, which pointerType it reports (touch, pen or mouse), and the pressure value it exposes.
Active points is the count of fingers the digitizer senses at that instant. Maximum (maxTouchPoints) is the ceiling of simultaneous contacts the browser claims to support, usually 5 or 10 on recent phones, and 10 on many PC touch monitors. Type shows the pointerType of the last event, which is handy for confirming that a stylus is being recognized as a pen and not as a finger.
Pressure comes from the PointerEvent.pressure property, which ranges from 0 to 1. Few devices have a real force sensor: per the W3C specification, a device with no pressure hardware reports 0.5 while a contact is active and 0 when there is none. So a fixed 0.5 is normal, not a fault.
Example 1, checking multitouch on a used tablet before buying: rest all five fingers of one hand on the area. If Active points reaches 5 and Maximum reads 5 or 10, the digitizer registers pinch and rotate gestures without dropping contacts. If a finger vanishes or flickers, the digitizer is suspect.
Example 2, validating a stylus: press the tip down and drag. The Type field should switch to pen and, on a device with a force sensor, Pressure should swing (say, between 0.15 and 0.9) as you press harder. If Type stays on touch, the system is not treating the pen as a pen.
This is the quick test after a screen replacement, when evaluating a second-hand phone or tablet, when signing off a kiosk or totem that relies on gestures, or when you suspect a "dead zone" after a drop. Dragging one finger slowly across the entire surface is the most reliable way to expose regions that draw no trail.
How to read it: a strip that never registers touch suggests a digitizer dead spot or a poorly applied screen protector interfering. Phantom touches that appear on their own point to a faulty digitizer, a cracked panel or moisture. A Maximum of 0 on a device that is normally touch-capable usually means the browser or driver is not exposing touch input, not that the glass is broken.
Paste the code into your HTML and the tool shows up on your page, without J-Kit's navigation and ads. It still runs in the browser of whoever visits your site.
<iframe
src="https://jkit.tools/embed/en-US/touchscreen-tester"
width="100%"
height="600"
style="border:0"
loading="lazy"
title="Touchscreen Tester"
></iframe>These references help contextualize formulas, standards, APIs and limitations used on this page. They do not replace professional validation when a result has legal, financial, medical or operational impact.
Yes, if the device and browser expose touch or pointer input, for example a touchscreen monitor or a 2-in-1 laptop. On a plain mouse you will see pointerType mouse.
Touch points are drawn locally and never leave this tab.