Skip to content
Advertisement

How to catch form submit with Backbone.js

When I test and click my apply button after I put in data in my input fields, I get a file not found error.

The Login button is a dummy button with no functionality to it. I want to only display an alert box that says “You logged in as (user name here) Succesfully!!!” after apply is clicked.

JavaScript

JavaScript

Advertisement

Answer

Why a file not found error?

You get a file not found error because the form is submitted and the action is "/login" with the default method being a GET request, so the submit makes a GET request to the login page but it doesn’t exist on the server. The server returns a File not found error.

How to prevent the submit?

You need to stop the submit with JavaScript. To do that, first catch the submit event, then call .preventDefault() on the submit event object.

How to catch the submit event with Backbone?

Backbone offers the events property on views.

The events hash (or method) can be used to specify a set of DOM events that will be bound to methods on your View through delegateEvents.

The following is the simplest way of catching a submit event, granted the root element of the view is the form, like in your code.

JavaScript

Here I simplified your view:

JavaScript

Specify the form buttons type attribute as it’s submit by default. So making the #login-button a type="button" ensures it won’t trigger a submit.

JavaScript

Why isn’t it working when using the exact code above?

Notice that the root element of the view is specified with the el property.

In your initial code, you’re using jQuery’s core function to find and pass the form element to the view. But for it to work, the form element must exist before running the JS of the view.

So the HTML page structure should look something like this:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement