The polyfills tag has no wiki summary.
10
votes
1answer
867 views
Modernizr with Respond.js
I am carefully assessing the best way to utilize Modernizr and Respond.js for responsive design and have a couple of questions for the community.
Firstly, it is my understanding that when bundling ...
10
votes
1answer
1k views
PolyFill/Shim for CSS transitions and animations
Google is failing me somewhat on this (I think because the terminology for PolyFill/Shim/Spackle is new and diverse at the moment). I'm trying to find a good JavaScript PolyFill or Shim for webkit's ...
6
votes
1answer
435 views
What is the difference between a shim and a polyfill?
Both seem to be used in web development circles, see e.g. HTML5 Cross Browser Polyfills, which says:
So here we're collecting all the shims, fallbacks, and polyfills...
Or, there's the es5-shim ...
5
votes
3answers
159 views
What scripts are available for fixing up styling bugs & shortcomings in IE?
There are several helpful JavaScripts and .htc behaviors that patch over the holes & buggy features in Internet Explorer's rendering engine. It seems most of them have some overlapping or ...
3
votes
3answers
52 views
How do I polyfill an attribute in JavaScript?
Given an attribute on an event that will be browser prefixed, I'd like to create a polyfill that makes it appear unprefixed.
E.g. the interface FooEvent has an attribute webkitBar that I'd like to ...
3
votes
1answer
310 views
polyfill for CSS3 'calc()' under webkit?
Many of us have been thrilled with polyfills to make IE less of a drag. But my beef is with WebKit. What the hell, WebKit? You're so awesome at everything else; why did you have to go and not ...
2
votes
2answers
38 views
how to shim elem.hidden properly
Introduction
elem.hidden is a new property that allows to hide elements and detect whether they are hidden.
The browser support isn't great so I want to shim it. If I were to shim this property what ...
2
votes
0answers
67 views
Which HTML5 forms javascript polyfill to has broadest feature and browser reach?
The new forms attributes and tags in HTML5 are great. Unfortunately, there is only limited support for these in Chrome and Firefox, and essentially no support of these in IE9 and below.
I have ...
2
votes
3answers
210 views
respond.js polyfill not working for last media query in IE8
I have two media queries in my css (not counting the print one) :
@media screen and (min-width: 720px) {} and @media screen and (min-width: 1026px) {
I am using respond.js to get them to behave under ...
1
vote
1answer
36 views
Opera: polyfill for the HTML5 menu tag with type: command
Anyone know of one? Firefox and Chrome get it right; Opera just displays a square +.
1
vote
2answers
53 views
Is there a (polyfill) code that resets all the inherited CSS properties on a given element?
The subject says it all. Looking for a (polyfill) code that will reset all the inherited CSS properties on a given element (such as <img>, <a> or <p>).
1
vote
1answer
184 views
Can I use Amplify.js in the same way that I use localstorage?
Has anyone here ever used Amplify.js for localstorage fallback on non HTML5 browsers?. I need to know if you can use it in the same way that you would localstorage for example can I get the size of my ...
1
vote
2answers
378 views
CSS Background Sizing Polyfill?
Is there a polyfill to handle CSS Background Sizing in Safari 4 (iOS) and IE
1
vote
1answer
395 views
Polyfill for css :target, not(), and [tilde] sibling selectors?
I'd like to start using the css :target, not() and ~ sibling selectors now. Is there a polyfill or some other solution for these? I'd prefer to be able to simply use the css for them over using ...
0
votes
1answer
48 views
Polyfill Webshim HTML5 Form datalist Chrome issue
For the life of me I can't figure out why Webshim HTML5 forms (http://afarkas.github.com/webshim/demos/demos/webforms.html) won't work in Chrome.
It's the datalist feature I'm missing (all other ...
0
votes
1answer
21 views
css3-mediaqueries.js overwrites my conditional IE7 CSS
I'm loading up the css3-mediaqueries.js library to get media queries working in IE7 and 8.
To fix some CSS bugs in IE7, I'm also running a conditional stylesheet block, like so:
<!--[if IE 7]>
...
0
votes
0answers
38 views
How to use JavaScript get and set for polyfill
I'm trying to figure out how to make a polyfill for dataset and I think I need to use get and set to define the function. How would the syntax of get/set be when trying to add them to ...
0
votes
1answer
82 views
html5 forms with polyfills - is it worth it?
Despite all of the buzz around html5 forms, it seems to me like you are creating extra work, in most scenarios, by going this route.
Take, for example, a datepicker field. The native html5 ...
0
votes
1answer
69 views
respond.js crashes IE9 in IE8 or IE7 mode
I'm doing some browser testing in IE9, which comes with the great feature to run in IE8 and IE7 mode.
I'm testing css3 media queries support and I'm using respond.js ...
0
votes
1answer
22 views
Setting an input to its most recent valid value
I'm trying to write a polyfill for HTML5's input type="number" element. Here's a comparative example if your browser already supports it.
If you enter a value that cannot be parsed as a number, such ...
0
votes
1answer
29 views
How to polyfill RadioNodeList?
Background
As per the WHATWG someForm.elements should return a HTMLFormElementsCollection.
A HTMLFormElementsCollection returns a RadioNodeList if multiple elements share the same name.
The ...
0
votes
0answers
192 views
Webshims Lib & YepNope = Sad Pants
I have used webforms (before 1.6) with YepNope and it worked well. Now for some reason, when I make the following call, I get nothing. I've used Firebug and can confirm that the scripts have loaded, ...
0
votes
2answers
1k views
html5, modernizr, yepnope, webforms2 issue
I am trying to use polyfills for the first time for a HTML5 form and I only want to serve the code to the browsers that need it (thus modernizr2/yepnope).
First thing to add is that the javascript is ...