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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:35:23+00:00 2026-05-15T13:35:23+00:00

I currently have two input fields which toggle the value value to either true

  • 0

I currently have two input fields which toggle the value “value” to either true or false.

What I would like to happen is that when the user hits the submit button, I can run an if/then statement for each input field and pass a different variable for each field, then combine those two variable into one variable.

For example.

if ($('input#one').is('[value="true"]')) {
        var one = 'opt-in-one'
    } 

    else {
        var one = 'opt-out-one'
    }

if ($('input#two').is('[value="true"]')) {
        var two = 'opt-in-two'
    } 

    else {
        var two = 'opt-out-two'
    }
 var result = one + two;

This is the best that I can explain it. Any ideas how to write this to one click function?

Edit: Here is the HTML

<form>

<input type="hidden" name="optin1" id="optin1holder" value="true" />

<input type="hidden" name="optin2" id="optin2holder" value="true" />

<input type="submit" class="button" value="Submit">

</form>
  • 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-15T13:35:24+00:00Added an answer on May 15, 2026 at 1:35 pm

    There are several ways to cackle this, for instance you can do it like this:

    $(":submit").click(function() {
      var result = ($('input#one').val() == 'true' ? 'opt-in-one' : 'opt-out-one')
                 + ($('input#two').val() == 'true' ? 'opt-in-two' : 'opt-out-two');
      //do something with result
    });
    

    Of if you wanted say a format like "out-in-one,opt-out-two", you could use .map(), like this:

    $(":submit").click(function() {
      var result = $('input#one, input#two').map(function() {
                    return (this.value == 'true' ? 'opt-in-' : 'opt-out-') + this.id;
                  }).get().join(',');
      //do something with result
    });
    

    The second approach works for any number of inputs, it would be a bit cleaner if you gave them a class, then instead of 'input#one, input#two' you could do 'input.optinout' for example. You can also change .join(',') to be any separator you want.

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

Sidebar

Related Questions

I currently have two Backbone models: user and project. I would like to have
I'm currently working with jQuery and using the datepicker. I have two input fields:
Currently I have two pages: The first page contains an input form, and the
I (currently) have two forms, one that needs to call the other. In other
I have a form with a table that has two input boxes, a select
On our login page, we have two input fields (username and password), but the
I have a page with two input fields City and Venue. I have the
I have a set of input fields that are stacked on top of each
I currently have two different models: User and Project . The User model has
I currently have two SQL commands. One retrieves a list of unique IDs from

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.