https://github.com/daniel15/ie-button-fix
Fix for handling of <button> tags in IE 6 and 7
https://github.com/daniel15/ie-button-fix
Last synced: about 1 year ago
JSON representation
Fix for handling of <button> tags in IE 6 and 7
- Host: GitHub
- URL: https://github.com/daniel15/ie-button-fix
- Owner: Daniel15
- Created: 2012-03-11T08:08:51.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-07-18T03:36:44.000Z (almost 14 years ago)
- Last Synced: 2025-02-04T17:55:20.549Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
IE 6 and 7 button fix
=====================
Internet Explorer 6 and 7 exhibit some odd behaviour when using `` tags.
The values of all buttons are posted to the server, instead of just the one that was clicked (like
other browsers). In addition to this, IE 6 posts the `innerHTML` of the button, instead of its
`value` attribute. This script fixes both these issues.
Licence
=======
(The MIT licence)
Copyright (C) 2012 Daniel Lo Nigro (Daniel15)
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.