I'm looking to vertically align text by adding <br /> tags between characters with jQuery.
<div id="foo"><label>Vertical Text</label></div> would look like this:
V
e
r
t
i
c
a
l
T
e
x
t
|
|
I'm looking to vertically align text by adding <br /> tags between characters with jQuery. <div id="foo"><label>Vertical Text</label></div> would look like this: V
|
||
|
|
|
|
Let's go golfing!
Completely untested, but the pattern in the regex looks like a boob. |
||
|
|
Not tested, but it should work.
|
||||||||||
|
|
|
It looks like you should able able to hack the following jQuery library to handle the task: |
||
|
|
|
This builds on Sebastian H's answer, but I tested it and this works
|
||
|
|
|
Why use a while loop when you can use jQuery's builtin each method?
There. It works. You can test it. |
||
|
|
|
|
hi..I tried this.. but it works only when I have a single text: ie.. as Text 1: then it aligns the alphabets vertically.. however i have a div where in i have multiple lables.. contained within a div.. now.. when I use this : $('#verticaltext label').html($('label').text().replace(/(.)/g,"$1
|