Posts by Paulo Cesar • 5 points
4 posts
-
0
votes2
answers34
viewsA: Doubt TD Jquery
Try to traverse the object var objData = $(target); var dateSelect = ""; $('elemento').click(function(){ $.each(objData,function(i,e){ dateSelect = e.data._i; //copia o valor da data para variavel…
jqueryanswered Paulo Cesar 5 -
0
votes1
answer68
viewsA: How to handle a TD using Jquery
Try to traverse the object var objData = $(target); var dateSelect = ""; $('elemento').click(function(){ $.each(objData,function(i,e){ dateSelect = e.data._i; //copia o valor da data para variavel…
-
0
votes1
answer43
viewsQ: Improve css code
How can I improve the semantics of this code in css. Ex: I created two div’s with display:None attribute; and when passing the mouse on a parent div those div’s should qualify. .acaoBaixar,…
-
0
votes1
answer29
viewsQ: AJAX overwrites variable
I cannot copy the result to the variable registroJson, I’ve already lost almost a day in this trouble: $(document).ready(function(){ var registroJson = []; var url = 'xpto';…