Back to library

Takeaways

  1. Follow established conventions for better usability
  2. Users expect consistency with their previous experiences
  3. Familiar patterns reduce learning curve
  4. Innovate only where it adds unique value

Jakob's Law

Users spend most of their time on other sites, so they prefer your site to work the same way as all the other sites they already know.

Overview

Jakob's Law, named after usability expert Jakob Nielsen, states that users develop expectations for how interfaces should work based on their cumulative experiences with other interfaces.

This principle suggests that following established design patterns can lead to better usability and user satisfaction.

Key Implications

  • Users transfer expectations from one digital product to another
  • Familiar patterns reduce cognitive load
  • Innovation should be balanced with convention

Implementation Guidelines

  1. Research common patterns in your industry
  2. Follow established conventions for core functionality
  3. Innovate primarily in your unique value proposition
  4. Test deviations from conventions with users

Common Design Patterns

ElementConventional PatternWhy It Works
NavigationHorizontal menu at topUsers expect to find navigation here
SearchRight-aligned field with magnifying glass iconWidely recognized pattern
Shopping CartTop right with cart iconConsistent across e-commerce
Form SubmissionPrimary button at bottom rightFollows reading/task flow

Code Example

<!-- Example of conventional navigation pattern -->
<header>
  <nav>
    <ul>
      <li><a href="/">Home</a></li>
      <li><a href="/products">Products</a></li>
      <li><a href="/about">About</a></li>
      <li><a href="/contact">Contact</a></li>
    </ul>
  </nav>
  <div class="search">
    <input type="text" placeholder="Search...">
    <button aria-label="Search"><i class="search-icon"></i></button>
  </div>
</header>

Related Notes