IE < 9 ne connaît effectivement pas getComputedStyle, mais connaît currentStyle, donc il faut composer avec les 2.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 // W3C and IE9+ if( window.getComputedStyle){ docStyle = document.defaultView.getComputedStyle( oElem, null); } else if( oElem.currentStyle){ docStyle = oElem.currentStyle; } return( docStyle[propriete]);
Partager