Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 24, 2023 04:23 pm GMT

I just wanted to buy pants. How excessive JavaScript is costing you money

Before the holidays, I was in the market to pick up a new pair of dress pants. Like you, I was pressed for time juggling work, family and social obligations, so I leaned on a time-honored tradition of people with more programming knowledge than fashion sense. Buy the same pair of dress pants you have, but this time in a different color. Unfortunately, this was only the beginning of my journey and involved more of my technical skills than should have been required to buy a damn pair of slacks.

Buying Pants

Since I already knew what pants I wanted, I headed to the multi-national clothing stores website. I quickly added the item in the color and size I wanted to my shopping cart. I started the checkout process by providing my first and last name. Then I was presented with one of those address fields that suggests a list of addresses you can select as you start typing. I clicked on the correct address, and it filled out the address, city, province and postal code fields for me, which I appreciated as it saved me some typing. Then I filled out my credit card information and clicked "Purchase".

The purchase failed, and the form reported that I needed to fill out my first or last name. Weird, thats literally the first thing I did, and visually, I could see my name in both of those fields, but whatever, I re-typed my name and clicked "Purchase" again.

It failed for a second time with the same error. At this point, I thought that it must be a problem with my ad blocker as it occasionally causes issues with shopping carts, even though your checkout experience should work even when your user has an ad blocker. So I disabled my ad blocker, refreshed the page, filled out the form again, and clicked on the "Purchase" button one more time.

Same. Damn. Error.

"The definition of insanity is doing the same thing over and over again and expecting a different result."

Probably not Albert Einstein

Digging into someone elses website

Now that I could reproduce the error with the ad blocker turned off, I formulated a theory of what was wrong with the site. I surmised that the input fields for first and last names must be a React Controlled Component that wasnt correctly updating React state with their input values. At least, that was my guess based on no evidence other than my twenty years of experience building for the web.

So I opened the dev tools in my browser, navigated to the network control panel, selected JavaScript in the filter and reloaded the page. The total amount of JavaScript loaded by this checkout page:

4.7 MB of JavaScript

Thats right, 4.7 MB of JavaScript code was downloaded, parsed, interpreted and compiled so I could fill out a form. If you think that sounds reasonable, Ive got news for you. It isnt.

Being presented with 4.7 MB of obfuscated, minimized JavaScript code, I decided it wasnt worth the effort to debug the root cause of the issue. Instead, I figured I could disable JavaScript and submit the HTML form, have the server side do validation and fulfill my order. So I turned off JavaScript and refreshed the page.

Nope, nada, zippo, zut, nothing. No HTML form fallback. Instead, all I got was a blank page. There was no way to checkout without JavaScript.

Am I being unreasonable?

At this point, I have to ask the question, Am I being unreasonable in expecting the site to work with JavaScript? I mean, everyone has JavaScript enabled, right?

As the above link indicates, there are many reasons why JavaScript may fail in a browser, including but not limited to ad blockers and corporate firewalls. Even without JavaScript, the website owners could have provided an HTML form-based fallback solution so that I could still order my pants. You might think thats a ton of extra work (it isnt), and there is no precedence in the real world.

Except there is, and it is called a Credit Card.

credit cards
Original photo by Avery Evans on Unsplash

Credit cards are a real-life progressive enhancement success story. When credit cards were first introduced, they used these clunky carbon copy swiper machines to make a copy of your credit card number. You then signed the original receipt, which you got to keep with copies going to the store and the bank.

carbon copy

I told my daughter that this is how things used to work, and she looked at me like I was nuts. If you are of a certain age, you will fondly remember the chu-chunk sound these machines made.

Later on, a magnetic strip was added to reduce the paperwork needed to record the transaction. Then it was followed up by the chip and pin approach and finally where we are today with tap to pay. Credit cards have gotten progressively easier to use and more secure.

However, if something goes wrong with the tap-to-pay reader, you can always use chip and pin instead. Ive seen places drag out those old carbon copy swipers in some rare cases, like when the power is out.

Theyve got it figured out. Once you decide to give them money, they dont give you any reason not to spend it. So why do we give folks a reason to leave our websites without completing their purchase when we have a reasonable fallback?

Is this common?

Sadly, yes.

Canadian Tire is one of my frequently visited retailers, especially during the pandemic. For those of you who are not familiar with Canadian Tire it is a big box store. It sells more than tires just like Wal-Mart sells more than just walls.

Taking a quick look at its checkout page, I see:

  1. 4.5 MB of JavaScript loaded
  2. Shopping cart information doesnt load when ad block is enabled
  3. Blank white screen when JavaScript is disabled

Nintendo eStore?

  1. 4.5 MB of JavaScript loaded
  2. Works with ad block enabled
  3. Blank white screen when JavaScript is disabled

Home Depot?

  1. 4.5 MB of JavaScript loaded
  2. Works with ad block enabled
  3. Blank white screen when JavaScript is disabled

The above is unacceptable. Large code bundles correlate to longer load times. Longer load times lead to smaller conversion rates. Maybe major brands like these can afford to drive away customers but can you?

Where do we go from here?

First, start performance budgeting your sites to avoid adding excessive amounts of JavaScript.

Second, test your site with an ad blocker turned on. Recent reports indicated that 26% to 40% of web surfers use an ad blocker. You dont want to drive customers away because your checkout flow depends on some third-party JavaScript that is routinely blocked.

Finally, if you are building an eCommerce site, think about building out HTML first to ensure that there is always a way for people to pay you. I hear thats an essential step in making money. If you are thinking about building a new site, why not give the HTML first framework, Enhance a spin?

Oh, and I never did buy those pants.

Addendum

Since my epic failure to secure some pants, the multi-national retailer has fixed the bug that prevented me from completing my order. Theyve also slimmed down the total JavaScript payload from 4.7 MB to 2.3 MB, which is an improvement but still not great. It still doesnt work without JavaScript.


Original Link: https://dev.to/begin/i-just-wanted-to-buy-pants-how-excessive-javascript-is-costing-you-money-1mgp

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To