javascript Programming Glossary: polyfill
Shim for FileReader() in IE 9 [closed] http://stackoverflow.com/questions/11089897/shim-for-filereader-in-ie-9 internet explorer share improve this question This polyfill uses Flash to provide access to the filesystem on browsers that..
If a DOM Element is removed, are its listeners also removed from memory? http://stackoverflow.com/questions/12528049/if-a-dom-element-is-removed-are-its-listeners-also-removed-from-memory are several ways around this problem You could use this polyfill at the bottom of the page to allow the use of addEventListener..
What browsers support HTML5 WebSocket API? [closed] http://stackoverflow.com/questions/1253683/what-browsers-support-html5-websocket-api Flash can support WebSocket using the web socket js shim polyfill. See caniuse for the current status of WebSockets support in..
How to handle warnings for proprietary/custom properties of built-in objects in TypeScript http://stackoverflow.com/questions/12703266/how-to-handle-warnings-for-proprietary-custom-properties-of-built-in-objects-in without any warning error message. I also include a polyfill for navigator.id as instructed by the documentation so navigator.id..
Storing Image Data for offline web application (client-side storage database) http://stackoverflow.com/questions/14113278/storing-image-data-for-offline-web-application-client-side-storage-database for IndexedDB WebSQL or whatever database you have think polyfill CON cannot store binary blobs only data uri base64 encoding.. simplifies using IndexedDB I was hoping to add a shim polyfill for Chrome FileSystemAPI CON It should handle blobs but I was.. Current Results I chose to use an IndexedDB approach and polyfill with FileSystemAPI for Chrome until they ship blob support For..
Performance problems with HTML5 Canvas in some mobile browsers. http://stackoverflow.com/questions/16191324/performance-problems-with-html5-canvas-in-some-mobile-browsers but you need to be careful about the timing. This robust polyfill may help a little but nothing compared to native requestAnimationFrame...
What is the difference between Polymer elements and AngularJS directives? http://stackoverflow.com/questions/18089075/what-is-the-difference-between-polymer-elements-and-angularjs-directives Polymer's platform.js is a library that contains several polyfills for various W3C APIs that fall under the Web Components umbrella... . Each of those pages also has a pointer to the individual polyfill. link rel import href x foo.html is an HTML Import. Imports.. stack RED layer We get tomorrow's web through a set of polyfills. Keep in mind those libraries go away over time as browsers..
How to shorten my conditional statements [duplicate] http://stackoverflow.com/questions/18347033/how-to-shorten-my-conditional-statements If you have to support old IE you can either use this polyfill on MDN or if you're using jQuery use .inArray . Short explanation..
How to list the properties of a JavaScript object http://stackoverflow.com/questions/208016/how-to-list-the-properties-of-a-javascript-object var keys Object.keys myJsonObject The above has a full polyfill but a simplified version is var getKeys function obj var keys..
Javascript inheritance: call super-constructor or use prototype chain? http://stackoverflow.com/questions/4152931/javascript-inheritance-call-super-constructor-or-use-prototype-chain JavaScript Reference Global_Objects Object create for a polyfill sub.prototype Object.create base.prototype Remember the constructor..
PolyFill/Shim for CSS transitions and animations http://stackoverflow.com/questions/5344745/polyfill-shim-for-css-transitions-and-animations with what Weston came up with. javascript html css polyfills css transition share improve this question There is a very.. this question There is a very good CSS3 transition polyfill for jQuery called jQuery.transition . You can just use the usual..
Input placeholders for Internet Explorer http://stackoverflow.com/questions/5522164/input-placeholders-for-internet-explorer so no need to include jQuery unlike most placeholder polyfill scripts . Edit For those more interested in how that what How.. how that what How to create an advanced HTML5 placeholder polyfill which walks through the process of creating a jQuery plugin..
Emulate/polyfill history.pushstate() in IE http://stackoverflow.com/questions/6622449/emulate-polyfill-history-pushstate-in-ie polyfill history.pushstate in IE history.pushstate is not supported..
HTML5 Canvas Performance and Optimization Tips, Tricks and Coding Best Practices http://stackoverflow.com/questions/8205828/html5-canvas-performance-and-optimization-tips-tricks-and-coding-best-practices for this there has been an update to the requestAnimFrame polyfill one which will probably remain the one to use to cover all vendors...
|