Ordre aléatoire des boutons sur actualisation en vanille js

$("#parent").html($("#parent").children().sort(function() { return 0.5 - Math.random() }));
Yeomeo