Posts by Jonas Matos • 51 points
3 posts
-
0
votes2
answers205
viewsA: Javascript loop does not add object property
The plugin call loaded the object before the $.getJSON twist, but for some reason if I gave an Alert to the object it forced the call to pick up the object loaded with the dates. Well what I did was…
-
0
votes2
answers205
viewsQ: Javascript loop does not add object property
follows my code var canvasEvents = new Object; canvasEvents['05-30-2015'] = '<a href="#" target=_blank>CAMPEONATOS SUL-AMERICANOS DE ATLETISMO</a>';…
-
5
votes5
answers29249
viewsA: How to calculate age based on DATE of birth in Mysql based on month and day?
The best and most refined alternative is this: SELECT TIMESTAMPDIFF(YEAR, c.nascimento, CURDATE()) as idade FROM clientes c This function is great.
mysqlanswered Jonas Matos 51