Get started with backbone.modelbinder CDN

MIT licensed

Backbone.ModelBinder: library for auto-binding form inputs to Backbone models.

Tags:
  • modelbinding
  • models
  • events

Stable version

Copied!

How to start using backbone.modelbinder CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with backbone.modelbinder CDN - cdnhub.io</title>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/backbone.min.js"></script>
  <script src="https://cdn.cdnhub.io/backbone.modelbinder/1.1.1/Backbone.ModelBinder.min.js"></script>
  <script src="app.js"></script>
</head>
<body>
  <form id="user-form">
    <label for="name">Name:</label>
    <input type="text" id="name" name="name">

    <label for="email">Email:</label>
    <input type="email" id="email" name="email">

    <button type="submit">Submit</button>
  </form>
</body>
</html>
Copied!
Copied!
Copied!
Copied!

All versions