Posts by Rafael Mori • 141 points
3 posts
-
1
votes2
answers228
viewsA: How to run a callback when a CSS animation is closed?
For you who only want raw javascript: // Determinando o elemento var e = document.getElementsByID('#square')[0]; // Checando o evento function checkTransicao(){ var t; var el =…
-
3
votes2
answers495
viewsA: Concatenate SQL Server
Uses the default concatenation operator of MSSQL, the "+": 1 - With the 2 fields: SELECT (UPPER(admatribuido) + ' - ' + Count(admatribuido)) AS [admAtribuido], Count(admatribuido) AS…
-
0
votes3
answers1235
viewsA: Group an array of objects
Dude, I don’t even think you need to create another array, use . foreach or . indexof and good. For example: var arrTemp = JSON.parse(resposta_do_banco); arrTemp.forEach(fillResumeArr); function…