up vote 7 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

0% accept rate
feedback

8 Answers

Let's go golfing!

$('#foo label').html($('#foo label').text().replace(/(.)/g,"$1<br />"));

Completely untested, but the pattern in the regex looks like a boob.

link|improve this answer
5  
+1 for regex boobs – travis Nov 10 '08 at 20:50
4  
+1 for only single boob, a pair of them would have gotten +2 :) – kkyy Mar 19 '09 at 11:55
feedback

Not tested, but it should work.

var element = $( '#foo label' );
var newData = '';
var data = element.text();
var length = data.length;
var i = 0;

while( i < length )
{

    newData += data.charAt( i ) + '<br />';
    i++;

}

element.html( newData );
link|improve this answer
V<br />e<br />r<br />t<br />i<br />c<br />a<br />l<br /> <br />T<br />e<br />x<br />t<br /> is what that makes. – MrChrister Nov 10 '08 at 20:09
Oh, bad mistake. Didn't think of that... – okoman Nov 10 '08 at 20:18
That last line needs to be: element.html( newData ); – mwilliams Nov 10 '08 at 20:19
Indeed. That is better than my answer. – MrChrister Nov 10 '08 at 20:21
Yep, changed it. – okoman Nov 10 '08 at 20:22
feedback

document.write("vertical text".split("").join("<br/>"));

Edit: Hole in one!

link|improve this answer
feedback

It looks like you should able able to hack the following jQuery library to handle the task:

Flipv jQuery Script Example

link|improve this answer
I saw this example but it seems a little overboard for my tastes. I'm not worried about accessibility for this particular situation. – Parrfolio Nov 10 '08 at 19:59
feedback

I've published a jQuery plugin to flip any text vertical; it's cross browser and works with almost all font-family.

You can find it at: http://pupunzi.open-lab.com/mb-jquery-components/mb-fliptext/

link|improve this answer
feedback

Mr Kurt's answer works well for a single id, but if you want something more useful that can be applied to several elements try something like this:

$.each( $(".verticalText"), function () { $(this).html($(this).text().replace(/(.)/g, "$1<br />")) } );

Then just set class="verticalText" on the elements you want to be formatted like this.

And as a bonus it keeps the boob regex.

link|improve this answer
feedback

This builds on Sebastian H's answer, but I tested it and this works

	var element = $( '#foo label' );
	var newData = '';
	var data = element.text();
	var length = data.length;
	var i = 0;
	$( '#foo label' ).html("");
	while( i < length )
	{
			$( '#foo label' ).append(data.charAt( i ) + "<br />")
			i++;
	}
link|improve this answer
If i have more then one it seems to append to both, thus doubling the text. Any ideas? – Parrfolio Nov 10 '08 at 21:08
feedback

Why use a while loop when you can use jQuery's builtin each method?

$.each( $('#foo').text(), function(){ $('#foo').append(this + '
'); } );

There. It works. You can test it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.