🔍 Learn More Pattern Audit Tool

Verify correct implementation of text-selectable Learn More sections

✅ Correct Pattern (Text-Selectable)

<div class="learn-more">
  <h3 onclick="toggleLearnMore(this.parentElement)">Learn More: Topic ↓</h3>
  <div class="learn-more-content">
    <p>Content...</p>
  </div>
</div>
  • onclick on h3 element
  • Passes this.parentElement
  • Text fully selectable

❌ Incorrect Pattern (Breaks Selection)

<div class="learn-more" onclick="toggleLearnMore(this)">
  <h3>Learn More: Topic ↓</h3>
  <div class="learn-more-content">
    <p>Content...</p>
  </div>
</div>
  • onclick on div container
  • Prevents text selection
  • Poor user experience
Scanning articles... 0 of 0 complete

Scan Results Summary

0
Correct Implementation
0
Need Fixing
0
No Learn More Sections