We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 889b2a5 + 6139979 commit 811f60fCopy full SHA for 811f60f
exercises/35 - Scroll To Accept/scroll-to-accept.html
@@ -44,7 +44,17 @@
44
molestiae sit sunt fugiat, perspiciatis architecto velit unde molestias ratione totam, atque doloremque!</p>
45
<hr>
46
</div>
47
- <button class="accept" disabled>Accept</button>
+ <!--
48
+ autocomplete="off" adresses an issue with firefox
49
+ where the browser will persist dynamic disabled state
50
+ on buttons across page loads.
51
+
52
+ More info here (se 'disabled' under 'Attributes')
53
+ https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
54
55
+ This may or may not be desired in a real world scenario 🙃
56
+ -->
57
+ <button class="accept" disabled autocomplete="off">Accept</button>
58
59
60
<style>
0 commit comments