Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

149
Views
Jquery If condition True add style visibility:hidden

I'm trying, if an "if" condition is true, to set the style of an element to "visibility:hide;".

I've done this:

if (user.privilege = 3) {
        $("#persone").css("visibility:hidden;");
}

But when the If condition runs, in the console i get this error:

"Uncaught TypeError: Cannot read properties of null (reading 'style')"

What should i do to solve this?

var html = '<div class= "col-lg-6">'+
           '<label class="mt-15">A chi è riferito l\'evento? </label>' +
                 '<select class="form-control" id="persone" >' +
                    _this.GetOptionPersone() +
                 '</select >' +
           '</div>' ;
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You've got a couple of syntax issues. Firstly = is for assignment. To compare values you need to use == or ===.

Secondly css() accepts 2 arguments, the rule name and its value, and it shouldn't have the trailing ;.

if (user.privilege == 3) {
  $("#persone").css('visibility', 'hidden');
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!