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

140
Views
How do I select a DOM element that has multiple classes?

I am trying to select a DOM element that has these classes:

mq-editable-field mq-math-mode mq-field

I have tried using:

document.getElementsByClassName('mq-editable-field mq-math-mode mq-focused')

This is not working, is there another document function I should be using? I am using vanilla javascript.

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

0

Use a query selector:

document.querySelector('.mq-editable-field.mq-math-mode.mq-focused')
about 4 years ago · Juan Pablo Isaza Report

0

you can use querySelector and querySelectorAll for get multiple-element by classes

querySelector method : return the first element within the document which matches a specified CSS selector(s)

let firstElement= document.querySelector('.mq-editable-field.mq-math-mode.mq-focused');

querySelectorAll() method : method returns all the elements within the document which matches the specified CSS selector(s).

let elements = document.querySelectorAll('.mq-editable-field.mq-math-mode.mq-focused');
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!