Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. $(".issue_company_dropdown").trigger('change',['defaultValue']);
  4. $(".issue_company_dropdown").change( function(e, val){
  5. var company_id = (val) ? val : $(this).val();
  6. $.ajax({
  7. url: "/includes/ajax/ajax.php?action=getcity",
  8. type: "post",
  9. data: { id: company_id },
  10. success: function(city) {
  11. $(".issue_company_city").val(city);
  12. }
  13. });
  14. });
  15. });
  16. </script>
Add Comment
Please, Sign In to add comment