var EditProfileModal = ModalFormView.extend({ el: ".mediaDrawer.editProfile", action: "/api/profile", load: function(){ this.reset() $.get("/api/profile", $.proxy(function(data){ console.log(data) for (var i in data) { this.$("[name='" + i + "']").val(data[i]) } this.show() }, this)) }, success: function(){ window.location.href = "/profile" } })