Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <script type="text/javascript">
  2. const handleSelect = () => {
  3. jQuery("#billing_tipo_aluno").on("select2:select", (event) => {
  4. document.querySelector("#billing_aluno_escola").value = event.currentTarget.options[event.currentTarget.options.selectedIndex].textContent
  5. })
  6. }
  7. window.onload = () => handleSelect()
  8. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement