https://github.com/powerumc/jquery.1.7.1-patch
https://github.com/powerumc/jquery.1.7.1-patch
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/powerumc/jquery.1.7.1-patch
- Owner: powerumc
- Created: 2013-06-26T04:28:11.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-04T15:46:57.000Z (about 11 years ago)
- Last Synced: 2023-05-19T06:10:18.491Z (about 2 years ago)
- Size: 298 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Junil Um
http://blog.powerumc.krBACKGOUNDS
=========
The jQuery 1.7.1 has bug a few problem. It couldn't compatible Internet Explorer 10. So you has a some bug if you have been used the jQuery 1.7.1 version.You have to use this jQuery 1.7.1 patch you want to use the jQuery 1.7.1
HOW TO PATCH
============Following code block has to error on the IE 10 Web Browser.
**Original source block**
```js
2699: return ( ret.nodeValue = value + "" );
```**To be patch**
```js
2699: return ( !$.browser.msie || $.browser.version < 7 ) ? ( ret.nodeValue = value + "" )
: void(0);
}
```SUPPORT
=======
- Fixed : Junil, Um
- Website: http://blog.powerumc.kr
- Contact: [email protected]