Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.26 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.target.value
  5.         })
  6.     }
  7.     window.onload = () => handleSelect()
  8. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement