I am currently creating list on the fly with jQuery. The solution below is somewhat hacky I know, so I am wondering if its possible to stick it in a loop, so I can iterate through each div and create the list. Thanks for your help!!

         var text0 = $('#d0').text(); 
         var textArr0 = text0.split('*');

         var text1 = $('#d1').text(); 
         var textArr1 = text1.split('*');

         var text2 = $('#d2').text(); 
         var textArr2 = text2.split('*');

         $("#d0").html('<ul></ul>');
         $("#d1").html('<ul></ul>');
         $("#d2").html('<ul></ul>');


         $.each(textArr0, function (k, v) {
            $("#d0 ul").append('<li>' + '<a>' + v + '</a>' +  '</li>');
         });

         $.each(textArr1, function (k, v) {
            $("#d1 ul").append('<li>' + '<a>' + v + '</a>' +  '</li>');
         });

         $.each(textArr2, function (k, v) {
            $("#d2 ul").append('<li>' + '<a>' + v + '</a>' +  '</li>');
         });
link|improve this question

67% accept rate
1  
What does the dom look like? – bdares Jan 31 at 15:50
feedback

3 Answers

up vote 2 down vote accepted

This is a tidied version of what you've already got...

$(function() {
    $("#d0, #d1, #d2").each(function() {
        var text = $(this).text();
        var textArr = text.split("*");
        $(this).html("<ul></ul>");
        for(var i = 0; i < textArr.length; i++) {
            $(this).find("ul").append('<li><a>' + textArr[i] + '</a></li>');
        };
    });
});

But, I'd recommend giving the elements d0/d1/d2 etc. a class and use $(".className") to identify them so you can have as many or as few as you like without having to change that code.

Here's a demo... http://jsfiddle.net/77vM9/

link|improve this answer
Thanks for the feed back Archer! It didn't work however? I tried stuffing it in loop and didn't work for me either... – user992731 Jan 31 at 16:15
You don't need to do anything to that. I'll add the document ready tags so it's complete then just copy and paste it. – Archer Jan 31 at 16:20
I just added a jsfiddle demo. The only difference is that the demo uses a class, instead of ids. – Archer Jan 31 at 16:24
Yeah, what you have up now works!!! Thanks much!! – user992731 Jan 31 at 16:27
No problem mate. I just though the class method is earier, and if you use common javascript then it's just one block of code for all pages. Glad to help :) – Archer Jan 31 at 16:42
show 1 more comment
feedback

To ease with reusability, try making the processing logic into a plugin:

(function($) {
    $.fn.listFromText = function() {
        var $source = this;
        var text = this.text();
        var delimiter = "*";

        $source.html("<ul></ul>");

        $.each(text.split(delimiter), function (k, v) {
            $("ul", $source).append('<li>' + '<a>' + v + '</a>' +  '</li>');
        });
    };
})(jQuery);

$("#d0").listFromText();
$("#d1").listFromText();
$("#d2").listFromText();

This may be overkill if only required for a single page, but handy if to be used consistently accross a project.

link|improve this answer
Thanks Rory!! That did the trick!! – user992731 Jan 31 at 16:12
Yeah, I have at least 8pages that are using this approach. Thanks again for the quick feedback!! – user992731 Jan 31 at 16:20
+1, Really like this approach. Made some small improvents to reduce the amount of DOM updates and to maintain chainability though; jsfiddle.net/2MjZE – Stefan Jan 31 at 16:34
feedback
(function($) {
    $.fn.textTolist = function() {
        var textArr = $(this).text().split('*'),
        target = $(this).empty().append('<ul></ul>');
        for (var i = 0; i < textArr.length; i++) {
            $('ul', target).append('<li><a>' + textArr[i] + '</a></li>');
        }
    };
})(jQuery);

$('#d0, #d1, #d2').each(function() {
    $(this).textTolist();
});
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.