First time here. I've got a problem with a form I'm working on. I have many select elements like this one in several fieldsets:
<select id="FP1" class="form-control">
<option value="" disabled selected class="hidden">Score</option>
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
What I need: When the user select an option, another select element opens up.
I tried the HTML onchange Event Attribute, this jquery alternative also with the change event but none worked for me so far. Any help? Thanks
$("select").onchange(function() {
$(this).next().find("select").focusIn();
});