python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Trying to create a basic dropdown menu with basic CSS, won't open up when clicked on
So far I've tried to use this code:
CSS Code:
/*global*/
html,
body {
width: 100;
margin: 10;
padding: 10;
font-family: Avenir, sans-serif;
}
/*functions*/
.multi-level,
.item ul,
.nav input...

Basewrecker
Votes: 0
Answers: 1
Angular autocomplete dropdown
I want to create an input field with autocomplete. So when I write in the input field it displays me as dropdown values from the database.
Ideally, it should be with angular material but I can't get t...
devZ
Votes: 0
Answers: 1
Using jQuery, how do I get a specific dropdown element (<select></select>) based on the value of the dropdown?
I have a class of dropdowns -- .selMapField -- and I want to select the dropdown that has a specific value. For instance:
const myattr=$(`.selMapField[value="MYSKU"]`).attr(`x`);
Chris
Votes: 0
Answers: 1