Why does it not allow me to name my class however I want when using Dynamic attributes? navbarMobile should not be changed to navbarmobile.
That is actually a limitation of the DOM, the attributes are case-insensitive and getting the attribute names from an element will always return them in lower-case.
2 Likes