Skip to content

Instantly share code, notes, and snippets.

@magmoro
Created February 21, 2009 20:18
Show Gist options
  • Save magmoro/68172 to your computer and use it in GitHub Desktop.
Save magmoro/68172 to your computer and use it in GitHub Desktop.
function initVml(){
if(!Browser.Engine.trident) return;
document.namespaces.add('v', 'urn:schemas-microsoft-com:vml');
vmlSheet=new StyleSheet().addRule('v\\:*', 'behavior:url(#default#VML)');
}
initVml();
var rect=new Element('v:rect',{
styles:{
width: 100,
height: 100,
left: 10,
top: 10,
position: 'absolute'
},
fillcolor:'yellow'
}).inject(document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment