Slant align text with jQuery

This is something that I’ve had to do a couple times recently. The bottom line is that there is no good way to do this. Until the W3 specs and browser engines allow for wrapping text around non-boxes, the best you’re going to be able to do is either add a bunch of &nbsp; entities and <br/> tags manually. But lets say you want to do this dynamically. Well, now we need some script help. The basic idea here is to break down the content inside the box into some bits we can move around make the text appear to flow according to the slant.

READ