How to make tags randomly switch places?
3 answers
jquery-shuffle, mouseenter, "li" . http://mktgdept.com/js/jquery-shuffle.js?v0.0.1
<div id="myID">
<li>A</li>
<li>B</li>
<li>C</li>
</div>
<script type="text/javascript">
$('#myID').mouseenter(function(){
$('#myID li').shuffle();
});
</script>
cwolves script, , mouseenter
0