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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:35:48+00:00 2026-05-31T07:35:48+00:00

Having the toughest time writing in the function to hide numbers that are equal

  • 0

Having the toughest time writing in the function to hide numbers that are equal to or less than zero. Here is the function I want to write it in at:

function isItANumber() {
var increased = parseInt($("#increasedRevenueValue"));

if(isNaN(increased)) {
    $("#increasedRevenueValue").hide();
}

}

Any thoughts? Should I use OR?

EDIT: Here is the fiddle of my code http://jsfiddle.net/YVcj7/

  • 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-31T07:35:50+00:00Added an answer on May 31, 2026 at 7:35 am

    Try the following, Im taking a guess at what element your using.

    function isItANumber() {
        var increased = parseInt($("#increasedRevenueValue").text());
    
        if(isNaN(increased) || increased <= 0) {
            $("#increasedRevenueValue").hide();
        }
    }
    isItANumber();
    ​
    

    Live Demo

    And pure js.. because do we really need jQuery for this?

    function isItANumber(el) {
        var increased = parseInt(el.innerText);
    
        if(isNaN(increased) || increased <= 0) {
            el.style.display = 'none';
        }
    }
    var element = document.getElementById("increasedRevenueValue");
    isItANumber(element);
    

    pure js demo
    ​

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

Sidebar

Related Questions

Having a hard time explaining what I mean, so here is what I want
Hey, I'm having the toughest time figuring out how to display this result. Say
I am having the toughest time getting a query created for this scenario: I
Having a heckuva time with this one, though I feel I'm missing something obvious.
Having a list of 3-tuples : [(a, b, c), (d, e, f)] I want
Having a duh moment trying to implement a new content page Here's the structure
Having (presumably) understood the motivation behind Nuget, I want to know, whether we still
Having the following domain class: class Message{ } Want to get all messages with
Having some invokeMethod that takes in (java.lang.String method_name, Object[] params, Class[] params_classes) How would
Having already read a number of articles on this here is the code I've

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.