Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I add an extra 3 columns to the table my list items do not fill them. Instead it says undefined in the cells. If anyone can I ideally need a 6x6 table for my list items. Cheers.

var listOfWords = ["mat", "cat", "dog", "pit", "pot", "fog", "log", "pan", "can", "man", "pin", "gag", "sat", "pat", "tap", "sap", "tag", "gig", "gap", "nag", "sag", "gas", "pig", "dig", "got", "not", "top", "pop", "god", "mog", "cot", "cop", "cap", "cod", "kid", "kit", "get", "pet", "ten", "net", "pen", "peg", "met", "men", "mum", "run", "mug", "cup", "sun", "mud", "rim", "ram", "rat", "rip", "rag", "rug", "rot", "dad", "sad", "dim", "dip", "did", "mam", "map", "nip", "tin", "tan", "nap", "sit", "tip", "pip", "sip", "had", "him", "his", "hot", "hut", "hop", "hum", "hit", "hat", "has", "hug", "but", "big", "bet", "bad", "bad", "bed", "bud", "beg", "bug", "bun", "bus", "bat", "bit", "fit", "fin", "fun", "fig", "fan", "fat", "lap", "lot", "let", "leg", "lit" ];

var shuffledWords = listOfWords.slice(0, 6);
 shuffledWords.sort(function () {
   return 0.5 - Math.random();
});

var tbl = document.createElement('table');
tbl.className='tablestyle';

 for (var i = 0; i < shuffledWords.length; i++) {
   var word = shuffledWords[i];
   var row = document.createElement('tr');
 //Here is where I add the extra 3 columns
 for (var j = 0; j < word.length + 3; j++){
   var cell = document.createElement('td');


    cell.textContent = word[j];
    // IF FIREFOX USE cell.textContent = word[j]; INSTEAD
    row.appendChild(cell);
  }

  tbl.appendChild(row);    
}

document.body.appendChild(tbl);
share|improve this question

2 Answers

up vote 1 down vote accepted

If you are trying to display two words per line, you can do this:

var listOfWords = ["mat", "cat", "dog", "pit", "pot", "fog", "log", "pan", "can", "man", "pin", "gag", "sat", "pat", "tap", "sap", "tag", "gig", "gap", "nag", "sag", "gas", "pig", "dig", "got", "not", "top", "pop", "god", "mog", "cot", "cop", "cap", "cod", "kid", "kit", "get", "pet", "ten", "net", "pen", "peg", "met", "men", "mum", "run", "mug", "cup", "sun", "mud", "rim", "ram", "rat", "rip", "rag", "rug", "rot", "dad", "sad", "dim", "dip", "did", "mam", "map", "nip", "tin", "tan", "nap", "sit", "tip", "pip", "sip", "had", "him", "his", "hot", "hut", "hop", "hum", "hit", "hat", "has", "hug", "but", "big", "bet", "bad", "bad", "bed", "bud", "beg", "bug", "bun", "bus", "bat", "bit", "fit", "fin", "fun", "fig", "fan", "fat", "lap", "lot", "let", "leg", "lit" ];

var shuffledWords = listOfWords.slice(0).sort(function () {
    return 0.5 - Math.random();
}).slice(0, 12);

var tbl = document.createElement('table');
tbl.className='tablestyle';
var wordsPerRow = 2;

for (var i = 0; i < shuffledWords.length; i += wordsPerRow) {
    var row = document.createElement('tr');

    for (var j=i; j < i + wordsPerRow; ++ j) {
        var word = shuffledWords[j];

        for (var k = 0; k < word.length; k++){
            var cell = document.createElement('td');


            cell.textContent = word[k];
            // IF FIREFOX USE cell.textContent = word[j]; INSTEAD
            row.appendChild(cell);
        }
    }
    tbl.appendChild(row);    
}

document.body.appendChild(tbl);

Added a demonstration of this: http://jsfiddle.net/Ks2Nk/

share|improve this answer
my list items still don't populate the 3 extra columns though – m0onio Jul 13 '12 at 13:53
They are added in the DOM, but are empty. What values do you want them to have? – Razvi Jul 13 '12 at 13:55
But he want them to be filled. not empty, read the question once again @Razvi – Arash Milani Jul 13 '12 at 13:56
I'm not sure I understand what you want to add on the extra columns ... Do you want to display 2 items on one row, each having 3 columns? Thus trying to display 12 items? – Razvi Jul 13 '12 at 14:01
1  
created a fiddle, with the javascript version, at jsfiddle.net/flaviocysne/PqMWa/7 – Flavio Cysne Jul 13 '12 at 14:11
show 2 more comments

Not sure if you trying to randomise the letters in the 6x6 row

If not try

cell.textContent = word[j%3];

But this will simply repeat the word

So for example for mat

you'll have

m a t m a t

share|improve this answer
Thanks but doesn't work. Is there a way I can say every 6 rows make new column? @Kamal – m0onio Jul 13 '12 at 14:11
How many rows do you want from this, can you show a sample output expected – Kamal Jul 13 '12 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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