• Lupec
    link
    fedilink
    arrow-up
    42
    ·
    edit-2
    5 months ago

    As a web developer of questionable frontend skills, it kinda looks like something you’d do as a band-aid solution if you had no idea how forms work or how to suppress their default events, which do happen to include the enter key being pressed. Really wild to go about it that route, whatever the intention was lol.

    Edit: While typing my other response down this comment thread, I realized for this to happen the developer must have actually suppressed the event correctly so it’s even weirder they chose to handle it like this

    • lurch@sh.itjust.works
      link
      fedilink
      arrow-up
      12
      ·
      5 months ago

      This is what happens, if someone angers the web dev 😜

      Probanly didn’t get paid or contradicting instructions.

    • 𝒍𝒆𝒎𝒂𝒏𝒏@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      11
      ·
      5 months ago

      Edit: While typing my other response down this comment thread, I realized for this to happen the developer must have actually suppressed the event correctly so it’s even weirder they chose to handle it like this

      Probably users were submitting the form too early or something, either way I agree this is a bit of an unusual way to handle this lol

      • Lupec
        link
        fedilink
        arrow-up
        3
        ·
        5 months ago

        So a form is basically a group of fields, think name, email and whatnot. By default, whenever you press enter in one of those, the browser takes whatever content is in the fields and follows some steps but the end result is it reloads the entire page. Nowadays that’s not what you want 99% of the time but it’s still the default behavior, so you have to instruct the browser not to do so by adding a couple lines of code. Whoever programmed this particular website then thought to inform the user that wasn’t going to work on top of presumably suppressing the original behavior.

        • imposedsensation@lemmynsfw.com
          link
          fedilink
          English
          arrow-up
          4
          ·
          5 months ago

          Almost need to spend as much time learning the norms of modern web development as you do learning the syntax and behavior of Javascript.