Hello im newbie,
i have this problem, im my site i have 2 imput for select country
and language, i want when the first is opened the second go down like
the height of open select, because now if i open the first select he
go on the second.
-
-
<form id="selections">
- <select
id=""class="country-se cs-skin-elastic"
onchange="setLanguage()" name="countrySelect">
- <option value="1">bulgary</option>
- <option
value="2" >brazil</option>
- <option value="3">france</option>
- <option value="4">germany</option>
- </select>
- </form>
-
-
<h3 class="title">Select lang:</h3>
-
-
<form id="selections">
- <select
class="country-se cs-skin-elastic"
onchange="setLanguage()" name="countrySelect">
- <option value="1">portogu</option>
- <option
value="2" >eng</option>
- <option value="4">spannsh</option>
- <option value="5">mexican</option>
- </select>
- </form>
-
This is my html, i use a codrops tutorial for
styling my form, but how do my question with jquery?
thx in advance