This causes accidental form submissions.
❌
<button>Click</button>
✅
<button type="button">Click</button>
Rule
Always set the button type explicitly.
Daily micro-tips for C#, SQL, performance, and scalable backend engineering.
This causes accidental form submissions.
<button>Click</button>
✅
<button type="button">Click</button>
Rule
Always set the button type explicitly.