You know those bugs that take hours to debug? And the fix is ... moving a single line.
That kind of bug is tripped up when you use django's csrf protection and someone comes to your site using IE9. It can easily happen that not only will form stylings not affect the elements, the form might even ignore any values entered!
But it works perfectly on older versions of IE.
The bug was insanely difficult to pinpoint because I don't have IE9 anywhere - only linux and mac around here, any windows box is so old IE7 is about the extent of its capabilities ... After installing some sort of windows 7 to a virtual machine and getting IE9 working, I set to work.
Symptoms
- Form works perfectly in IE7, Chrome, Firefox etc.
- Form works perfectly with compatibility mode turned on
- Form values aren't submitted
- Form elements don't respond to form styling
For some reason IE9 thinks the form is empty. Displays all elements, but they don't behave like they're part of the form ... which is kind of odd. They aren't even selectable through the javascript console or anything.
Solution
After many pointless wanderings and random code changes, I realized the HTMLdoesn't look like something I'd usually write (legacy-ish code).
<form action="/somewhere" method="POST">{% csrf_token %}<label>blah</label><input type="text" name="blah" /><!-- etc --></form>
Usually I'd put the {% _csrf_token %}_ at the end. Not sure why, just the way I've always done it ... surely this can't make a difference right?
It can!
Putting it at the bottom of the form fixed all bugs. Styling suddenly worked, form was submitted with all data and everything worked everywhere.
Le huh?
When the form is rendered that {% csrf_token %} is replaced with an invisible div tag. For some reason this ticks off IE9's strictness and the rest of the form isn't considered to be a part of this element anymore.
Something like this:
<form method="POST" class="filter" style="display: none;"><div style="display: none;"><inputtype="hidden"name="csrfmiddlewaretoken"value="41aeb46067bf9e800f9ce6c718265121"/></div><input type="hidden" name="selected" value="" /><label for="dateFrom">From date:</label><input type="text" class="datepicker" name="dateFrom" readonly value="" /><!-- etc. --></form>
I can't find official reference either way, but I think div's inside forms are legal HTML, perhaps not the best looking HTML, but p tags are allowed, even happen in the form tag example on w3.org, so I have no idea why IE9 would trip up on this.
Perhaps someone a bit more knowledgeable of strict HTML can shed some light on this issue? For now, let's all just be aware of this little quirk.
Related articles
- Microsoft Makes Fun of Older IE versions To Promote IE9 (browserfame.com)
- IE9 and e-Portal (edugeek.net)
- Chrome, IE9 and Firefox Failed at Pwn2Own 2012 (browserfame.com)
- Rounded corners not working in IE9 (stackoverflow.com)
Learned something new?
Want to become a high value JavaScript expert?
Here's how it works 👇
Leave your email and I'll send you an Interactive Modern JavaScript Cheatsheet 📖right away. After that you'll get thoughtfully written emails every week about React, JavaScript, and your career. Lessons learned over my 20 years in the industry working with companies ranging from tiny startups to Fortune5 behemoths.
Start with an interactive cheatsheet 📖
Then get thoughtful letters 💌 on mindsets, tactics, and technical skills for your career.
"Man, love your simple writing! Yours is the only email I open from marketers and only blog that I give a fuck to read & scroll till the end. And wow always take away lessons with me. Inspiring! And very relatable. 👌"
Have a burning question that you think I can answer? I don't have all of the answers, but I have some! Hit me up on twitter or book a 30min ama for in-depth help.
Ready to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz components your whole team can understand with React for Data Visualization
Curious about Serverless and the modern backend? Check out Serverless Handbook, modern backend for the frontend engineer.
Ready to learn how it all fits together and build a modern webapp from scratch? Learn how to launch a webapp and make your first 💰 on the side with ServerlessReact.Dev
Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com
By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️