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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:43:26+00:00 2026-06-14T14:43:26+00:00

I have this code on my site. The idea is to hide a specific

  • 0

I have this code on my site. The idea is to hide a specific class when a specific select box value is selected.

This is my code

$(document).ready(function(){
var txt = 'Marketing';
$("div.ginput_container select#input_3_1 option").each(function(){
    if($(this).val()==txt){
        $('.mar').hide();    
    }

   });
});

The result I’m getting is .mar class being hidden as soon as the page is loaded. I can’t see the error, I have also tryied with

var num = 1

but I have the same issue.

  • 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-14T14:43:28+00:00Added an answer on June 14, 2026 at 2:43 pm
    $(document).ready(function() {
        var txt = 'Marketing';
        $("#input_3_1").change(function () {
            if ( this.value == txt ) $('.mar').hide();
        });
    });
    

    Here’s the fiddle: http://jsfiddle.net/9Cyxh/


    If you want to show $('.mar') when a different option is selected, use toggle instead:

    $('.mar').toggle( this.value != txt );
    

    Here’s the fiddle: http://jsfiddle.net/9Cyxh/1/


    If you want this to also run on page load (before an option is manually selected), trigger the change event:

    $(document).ready(function() {
        var txt = 'Marketing';
        $("#input_3_1").change(function () {
            $('.mar').toggle( this.value != txt );
        }).change();
    });​
    

    Here’s the fiddle: http://jsfiddle.net/9Cyxh/2/

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

Sidebar

Related Questions

I have a file- Site.js with the following method: function Init() { $(document).ready(function() {
In one page of our site, I have this code: $_SESSION['returnURL'] = /store/checkout/onepage; and
I've used this code to have a like btn on my site: <iframe src=http://www.facebook.com/plugins/like.php?href=URL_OF_YOUR_WEBSITE&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=80&amp
I have downloaded the sample code from this site for FTP Client http://www.lysesoft.com/products/andftp/index.html But
I have the following code snippet: using (SPSite site = new SPSite(this.ListAddress)) { using
From this site: http://www.toymaker.info/Games/html/vertex_shaders.html We have the following code snippet: // transformations provided by
I have this code: EditText value = ( EditText )findViewById( R.id.editbox ); Integer int_value
I have this code: using ( var site = new SPSite( myUrl ) )
I got this idea, in a NO CMS site... i have about 50 images,,
I have this javascript code: $(function(){ var currentCarouselItem = 1; //set carousel to first

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.