css-grid-polyfill icon indicating copy to clipboard operation
css-grid-polyfill copied to clipboard

Document the myStyle property

Open gaurav21r opened this issue 9 years ago • 1 comments

I was working with jQuey using $('#myelem').css('grid-row', '1/12') when I noticed the error message saying that HTMLDOMElement.myStyle is to be modified and not HTMLDOMElement.style (which jQuery and other frameworks change).

I think this should be properly documented. Sorry if I missed it somewhere!

gaurav21r avatar Jul 02 '15 08:07 gaurav21r

Yeah, that's a ugly limitation due to Chrome and Safari inability to properly redefine properties on DOM elements. Chrome fixed the bug recently, but I don't want to change the way it works knowing it will fail in older browsers on which developers will not test on.

In the mean time, I would advise only using classes to change the style, and not change the inline style. There are likely bugs related to this, I'm not sure it works in all cases anyway.

You're right I should document this more prominently.

FremyCompany avatar Jul 02 '15 09:07 FremyCompany