The content is brought dynamically so I need to be able to put in a ordered list on the fly..

Currently, it's bringing in my text like this with the white-spaces:

<div class="born">BORN RESIDENCE PLAYS FAVORITE</div>

This is the intended format I am trying to accomplish but no luck..

<div class="born">
  <ul>
   <li>BORN</li>
   <li>RESIDENCE</li>
   <li>PLAYS</li>
   <li>FAVORITE</li>
 <ul>
</div>

Thanks in advanced!!

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I'm sure there's a less hacky way, but:

var text = $("div.born").text();
var textArr = text.split(" ");
$("div.born").html('<ul></ul>');
$.each(textArr, function (k, v) {
    $("div.born ul").append('<li>' + v + '</li>');
});

Example: http://jsfiddle.net/KKauk/

link|improve this answer
Grim- Thanks for the quick response your awesome!! Its almost working... – user992731 Jan 28 at 0:56
You're welcome. What's not working? – Grim... Jan 28 at 0:59
its formating it like this:<div class="born"> <ul> <li>BORN RESIDENCE PLAYS FAVOURITE</li> <li>SURFACE IDOLS HEIGHT WEIGHT STATUS RACELIST</li> <li>RANKING CLOTHING SHOES</li> </ul> </div> – user992731 Jan 28 at 1:00
That means the .split(" ") isn't working - the returned strings aren't spaced with &nbsp; are they? – Grim... Jan 28 at 1:03
No, its just blank spaces. I'm in wordpress and pulling in the text from <?php the_content(); ?> I am however removing the <p> tags with: remove_filter ('the_content', 'wpautop'); not sure if that is causing the issue. – user992731 Jan 28 at 1:07
show 2 more comments
feedback

Here is how you can get words from a string with jQuery (and a little bit of javascript):

 var splitted = str.split(/\s+/);
  • \s - Match blank space.
  • + - Match one or more times.

jQuery match all words in string

var str = $('div').text();

var splitted = str.split(/\s+/);
var _ul = $('<ul/>');
$('div').html(_ul);
$.each(splitted, function(key, value) {
    $(_ul).append($('<li/>').html(value));
});
link|improve this answer
Awesome!! Thanks zdrsh!! – user992731 Jan 28 at 2:32
feedback

Your Answer

 
or
required, but never shown

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