With Style
with(document.body.appendChild(
document.createElement('div')
).style)
height = '100px',
background = 'red',
border = '3px solid blue',
transform = 'rotate(10deg)'
Was looking through some old code and saw something like this… people don’t like with
and it doesn’t work in “strict mode”… I use it here on Snippet Zone for fun speed-coding stuff…