I have selectors who have a name:
<select name="selector[]" id="selector">
<option value="1">Valor 1</option>
<option value="2">Valor 2</option>
</select>
<select name="selector[]" id="selector">...
Hi, I would like to know how I can with PURO Javascript to obtain names of CSS classes and be able to show them in the console without repeating names from a list of nodes where I obtain the elements looking for the first class. Elements with cl...
Is it possible to edit an element depending on the child it contains?
<div>
<section id="content-area">Soy el hijo de div</section>
</div>
div < #content-area{
border: solid 1px red;
}
When...
I was developing a website that has a table and in it I am applying a hover that changes both the background and the letter.
The problem is that when I perform the hover with selectors in the execution, the next element of the table is passed...
Select elements with CSS in a certain range, that is:
I have a table with their respective ones now I need that the tr that are from the fourth position to the ninth (9) are in red color, as I do?