Dead clicks analysis on non-clickable elements

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Dead clicks analysis on non-clickable elements
Simple
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Dead Clicks Analysis

Dead click is a click on non-clickable element with no event handler and no response. Unlike rage click (repeated), dead click is single click on "dead" spot. Indicates mismatch between user expectations and actual interface behavior.

Dead Click Causes

  • Text looks like link (underline, blue), but isn't
  • Image looks clickable (icon, button), but has no link
  • Element was clickable in previous design, now isn't
  • User expects dropdown or modal window
  • pointer-events: none on child when clicking parent

Detection via Analytics

// Dead click detector
document.addEventListener('click', function(event) {
  const el = event.target

  // Determine "expected clickability"
  const isClickable =
    el.tagName === 'A' ||
    el.tagName === 'BUTTON' ||
    el.tagName === 'INPUT' ||
    el.tagName === 'SELECT' ||
    el.tagName === 'TEXTAREA' ||
    el.getAttribute('role') === 'button' ||
    el.getAttribute('onclick') ||
    el.closest('[role="button"]') ||
    el.closest('a') ||
    el.closest('button') ||
    getComputedStyle(el).cursor === 'pointer'

  // If element not clickable — dead click
  if (!isClickable) {
    const selector = buildSelector(el)
    const text = el.textContent?.trim().slice(0, 50)
    const styles = getComputedStyle(el)

    // Only interested in elements that look clickable
    const looksClickable =
      styles.textDecoration.includes('underline') ||
      styles.color === 'rgb(0, 0, 238)' ||  // blue
      el.tagName === 'IMG' ||
      el.classList.contains('icon') ||
      el.closest('.card') ||
      el.closest('[data-action]')

    if (looksClickable) {
      gtag('event', 'dead_click', {
        element: selector,
        text: text,
        page: window.location.pathname,
        looks_clickable: true
      })
    }
  }
})

Microsoft Clarity Dead Clicks

Clarity automatically detects dead clicks in Heatmaps → Dead Clicks. Pages with highest % dead click sessions are priority.

Analysis and Fixes

def get_dead_click_patterns(analytics_db):
    rows = analytics_db.query("""
        SELECT
            element,
            text,
            COUNT(*) as clicks,
            COUNT(DISTINCT session_id) as sessions,
            page
        FROM events
        WHERE event_name = 'dead_click'
        AND date >= CURRENT_DATE - INTERVAL '14 days'
        GROUP BY element, text, page
        ORDER BY sessions DESC
        LIMIT 20
    """)

    for row in rows:
        if row['sessions'] > 50:
            print(f"HIGH PRIORITY: {row['element']} '{row['text']}' "
                  f"— {row['sessions']} sessions on {row['page']}")
    return rows

Typical fixes:

  • Add <a href> to underlined text
  • Make product card entire link: <a href="/product/X" class="card-link">
  • Remove text-decoration: underline from non-clickable elements
  • Add cursor: pointer + onclick to interactive blocks

Delivery Time

Setup detector, analyze patterns, fix top-10 issues — 1–2 business days.