Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6209837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:03:22+00:00 2026-05-24T06:03:22+00:00

I have two functions, one that creates a table like so: function return_formatted_results(result_no,addy,title,own_comment) {

  • 0

I have two functions, one that creates a table like so:

function return_formatted_results(result_no,addy,title,own_comment)
        {
var div=document.createElement("DIV");
attr(div, 'id', 'div_id'+result_no);

var form=document.createElement("FORM");
attr(form, 'id', 'det_'+result_no);
attr(form, 'name', 'form'+result_no);
attr(form, 'method', 'post');
attr(form, 'action', '');

// ###############
// add all other objects and attributes here
// ###################

form.appendChild(table);
div.appendChild(form);
}

and then I have this function that calls the above function:

    function get_urls_and_display()
    {


        var allTables=new Array();

        for(var i=0;i<url.length;i++)
{   allTables[i]=return_formatted_results(i,url[i],the_title[i],the_comm[i]);   }

        document.getElementById("wait").appendChild(allTables.join("\n\n"));

The problem is the join() in the last line throws an error. I am new to working with the whole DOM thing like I did above, so have no idea what to use instead. I used to use plain html before and join() worked then.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T06:03:23+00:00Added an answer on May 24, 2026 at 6:03 am

    You’ve got a few problems:

    1. return_formatted_results doesn’t actually return anything (ironic because it’s explicitly stated in the name)
    2. join is indeed only for strings.

    After you make return_formatted_results return div, try this for get_urls_and_display:

    function get_urls_and_display() {
        var wait=document.getElementById("wait");
        for(var i=0; i<url.length; i++) {
            var div=return_formatted_results(i, url[i], the_title[i], the_comm[i]);
            wait.appendChild(div);
        }
    }
    

    Additionally, it looks like you have three different arrays all containing related data. A more suitable data structure would be a list of objects. You could define that like this:

    var data=[
        {
            url: "http://www.example.com/a",
            title: "Link A",
            comment: "This is the first link."
        },
        {
            url: "http://www.example.com/b",
            title: "Link B",
            comment: "This is the second link."
        }
        // ...
    ];
    

    Here’s what get_urls_and_display would look like with that:

    function get_urls_and_display() {
        var wait=document.getElementById("wait");
        for(var i=0; i<data.length; i++) {
            var datum=data[i];
            var div=return_formatted_results(i, datum.url, datum.title, datum.comment);
            wait.appendChild(div);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a function that works like that: (the-function [one] [two] [three]) and I
I have two functions to add and remove table rows that contain a form
I have two functions whose underlying logic is the same but in one case
So let's say I have two different functions. One is a part of the
Say I have the following code: function One() {} One.prototype.x = undefined; function Two()
I have two begininer programs, both using the 'while' function, one works correctly, and
I have a function which parses one string into two strings. In C# I
I have a function which returns a one-sided intersection of values between two input
I have a function which takes in two parameters, and returns one or the
I have two functions that have different enough logic but pretty much the same

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.