Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <select id="mainoption" name="mainoption">
  2. <option th:each=" mainoption : ${ mainoptionList } "
  3. th:text=" ${ mainoption } "></option>
  4. </select>
  5. <select id="suboption" name="suboption">
  6. <option th:each=" suboption : ${ suboptionList } "
  7. th:text=" ${ suboption.suboption } "></option>
  8. </select>
  9.  
  10. $('#mainoption').on('change', function(){
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement