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

138
Views
How to remove blue shade from dropdown

I'm back for another beatin' ;)

So I have a hamburger with a dropdown menu, When opening the burger, a blue shade appears around the entire dropdown and the hamburger. I think is the focus part in the script and cannot figure it out. I would like to rid the focus thingy.

$(".dropdown").click(function () {
    $(this).attr("tabindex", 1).focus();
    $(this).toggleClass("active");
    $(this).find(".dropdown-menu").slideToggle(300);
});
$(".dropdown").focusout(function () {
    $(this).removeClass("active");
    $(this).find(".dropdown-menu").slideUp(300);
});

I also have the CSS if needed. Thank you for reading. Mike.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

It's CSS. Just try

.dropdown-menu {
  outline: none;
}

buuuuut, it's there for a reason. Outlines exist for accesibility reasons. You should not remove them.

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!