Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="dados.json"></script>
  6. <script>
  7. $(function(){
  8. $.getJSON("dados.json", function(data){
  9. x =data.opcoes.length;
  10. for (i=0; i<x; i++){
  11. $("#menu").append(data.opcoes[i].nome+ "-" + data.opcoes[i].cpf +"<br>");}
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div id="menu"></div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement