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

  • SEARCH
  • Home
  • 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 8791967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:54:56+00:00 2026-06-13T22:54:56+00:00

I have read in other answers that in order to use a function as

  • 0

I have read in other answers that in order to use a function as a parameter, it needs to be written whatever;and not whatever()because this las option “calls” the function. But what if I need to specify a parameter of said function? I give an example:

I have this function to replace some content:

function navigate(content) {
var card = document.getElementById('informationdiv');
card.innerHTML = content;
} 

And then I have another function that creates the content:

function productsheet(article) {
    document.write(array_products[article].Name);
    document.write(array_products[article].Number);
    document.write(array_products[article].Type);
    // and so on...

Then, I want to call the first function like this:

navigate(productsheet(article));

And instead of do the innerHTML replacement, it just runs productsheet(article)overriding everything else.

As I said, I found similar problems where the solution was to pass productsheetwithout (article), but in my case I need the article parameter, so productsheetknows what to print…

What is the suggested approach here?

Thank you very much!

  • 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-06-13T22:54:57+00:00Added an answer on June 13, 2026 at 10:54 pm

    There are much better ways to achieve what you want, but taking your code as starting point I would do as follows:

    navigate(article);
    
    function navigate(article) {
        var card = document.getElementById('informationdiv');
        card.innerHTML = productsheet(article);
    }
    
    function productsheet(article) {
        //here you would return a string that has the format as how you would like to display it
        return "... name, number, type ...";
    }
    

    Again, I think you should rethink the whole approach and throw this code away.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have read the other threads regarding this same problem but I still don't
I have read this article from High Scalability about Stack Overflow and other large
I know there are other questions that have similar issues, but I have read
I read up someplace, that there are characters other than A-Z that have a
i read in other answers that theres no limit imposed by c++ compiler maximum
Having read other people's questions I thought window.onload=... would answer my question. I have
I have read other related question but i cant really get them to relate
I have read the other posts, e.g., vim: Executing a list of editor commands
According to Apple documentation and other documentation I have read about on disk encryption
Okay guys, I have read through all the other posts and question on jQuery

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.