Posts by Diego • 31 points
2 posts
-
1
votes4
answers1977
viewsA: Select All checkbox by clicking a checkbox
Just change that line: $('input:checkbox').prop('checked', $(this).prop('checked')); Look here: https://jsfiddle.net/xpvt214o/145709/…
-
2
votes1
answer46
viewsA: Trouble joining tables with UNION
Try it this way: SELECT position, 'Podium' AS tipo, team FROM (SELECT * FROM league ORDER BY position ASC LIMIT 3) v UNION SELECT position, 'Demoted' AS tipo, team FROM (SELECT * FROM league ORDER…