Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <div class="col-md-3 col-xs-4" id="cidade">
  2.  
  3. <select data-width="auto" id="municipio" name="municipio" class="selectpicker municipio">
  4. <option value="0" disabled="disabled">Selecione o estado</option>
  5. </select>
  6. </div>
  7.  
  8. $(document).ready(function(){
  9.  
  10. $("#estado").change(function() {
  11.  
  12. var est = document.getElementById("estado").value;
  13.  
  14. debugger;
  15.  
  16. $.ajax({
  17. type: 'post',
  18. url: 'cidade.php',
  19. data: {
  20. cd_estado: est
  21. },
  22. success: function(dados) {
  23. $(".municipio").html(dados);
  24. }
  25. });
  26.  
  27. });
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement