Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(function()
- {
- let arr = []
- let q = []
- $("body").on('click', '.link_resposta', function(event)
- {
- event.preventDefault();
- /* Act on the event */
- let q = {
- 'idpesquisa': $(this).data("idpesquisa"),
- 'idpergunta': $(this).data("idpergunta"),
- 'idresposta': $(this).children("li").data("idresposta")
- }
- arr.push(q)
- let tipo = typeof arr
- console.log(tipo)
- console.log(arr)
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment