Posts by matheus.m94 • 15 points
4 posts
-
1
votes1
answer686
viewsQ: How to draw words from an array without repeating them?
I am doing a college project where I need to simulate the lottery, so I have an array with the name of 20 teams and I need to draw 10 teams but without repeating any and present these teams in a…
-
0
votes2
answers1990
viewsQ: How to insert items from a JSON file into an html table
I have this JSON file: var identificacao = [ { "nome": "João Silva", "cpf": "444.111.777-00", "rg": "44.66.55.00-1", "nascimento": "28/06/1994", "endereco": [{ "rua": "Av. Marechal Tito", "numero":…
-
0
votes1
answer1242
viewsQ: How to display XML data in an HTML table
I would like the XML data to be displayed in a common HTML table with TR and TD, because with the code I’m using the information gets confused. Follow the code I used: $(function(){ $.ajax({ url :…
-
0
votes0
answers314
viewsQ: How to load saved form in localstorage in a table?
I need a form saved on localstorage be uploaded to another page, within a table, but I don’t know exactly how to do this, the most I can is to be uploaded to the same page of the form, but this way…