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 6907193
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:24:17+00:00 2026-05-27T08:24:17+00:00

I would like to replace a variable in an object, but without knowing the

  • 0

I would like to replace a variable in an object, but without knowing the variable’s key… eg.:

var parameters = new Object();
    parameters.startregion = null;
    parameters.fx_adultnum = 2;

… bit later

$adultnum.change(function(){ setParameters("fx_adultnum", $adultnum.val() );});

and the setParameters function (what is absolutely don’t work 😛

function setParameters(v, value){
    console.log(parameters);
    $.each(parameters, function(key, val) {
        if (key == v) {
            console.log(key);
            console.log(val);
            $(this).val(value); // <-- not works
            }
    });
    console.log(parameters);
}

I would like to replace fx_adultnum’s value to 4 for example.
Could you help in this for meh? Thanks 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-05-27T08:24:18+00:00Added an answer on May 27, 2026 at 8:24 am

    You can access an object’s property by name with a simple index:

    this[val] = value; 
    

    Just note that in $.each the this context is set to the value you’re currently iterating. Did you really mean:

    v[key] = val;
    

    You might also look at jQuery’s extend function

    var A = { "x": 1, "y": 2 };
    var B = { "y": "3", "z": 12 };
    
    $.extend(A, B);
    
    now A is { "x" : 1, "y": "3", "z": 12 }
    

    Or if you want to get this same result, without modifying A, then you could do:

    var newObj = $.extend({}, A, B);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to catch and replace a regex in a variable but I'm
I have code like that: TEXT_TO_FILTER='I would like to replace this $var to proper
I've got a variable in JSTL and would like to replace all commas with
I have a collection of DOM nodes I would like to replace with new
I would like to replace only the group in parenthesis in this expression :
I would like to replace the default malloc at link time to use a
I would like to replace the entire header area in an NSIS installer with
I would like to replace drop down list (that has on change event that
I would like to replace the first character ' x ' with the number
in my script I check some files and would like to replace a part

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.