https://github.com/motdotla/regular_form_submit_fix
get form submit fix for sammy.js
https://github.com/motdotla/regular_form_submit_fix
Last synced: 7 months ago
JSON representation
get form submit fix for sammy.js
- Host: GitHub
- URL: https://github.com/motdotla/regular_form_submit_fix
- Owner: motdotla
- Created: 2012-01-30T16:09:46.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-01-30T16:23:10.000Z (over 13 years ago)
- Last Synced: 2025-01-24T04:37:20.966Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. Get form submit fix for sammy js
p. Sammy.js wants to intercept your GET form submits. This prevents sammy.js from doing that.
h2. Usage
1. Include the file in the head of your document.
2. Include the plugin in your sammy app.
var app = Sammy('body', function() {
this.use(RegularFormSubmitFix);
..