Reputation: 612
I have a HTML elements that goes by this <select multiple="multiple" id="multi-select">
, now. How can I view where is the source of id="multi-select"
comes from? (The asset.js/asset.css/style.css) I have tons of css/js loaded in the page, i just dont know where to find it.
Upvotes: 0
Views: 21
Reputation: 9355
multi-select
is the id of the <select>
element and this helps while you are styling your HTML in the CSS, or use this id in the Javascript. This id plays vital role in the selector.
Update:
Use your browser's inspect element to find out the code which belongs to multi-select
id.
Upvotes: 1