How to shuffle labels with same class? here is an example of what I want to do
<div>
A. <label class="shuffle">1</label>
B. <label class="shuffle">2</label>
C. <label class="shuffle">3</label>
</div>
A. 1
B. 2
C. 3
This will be my expected output.
A. 3
B. 1
C. 2
I've been trying THIS solution but it appears that on shuffle it will append at the bottom.