Skip to content Skip to sidebar Skip to footer

JQuery Slice Random Amount Of Divs

I'm a beginner at best with scripting so I'm hoping someone can help me if this is possible. I'm using this script pieced together from research to randomize the divs displayed on

Solution 1:

Use parseInt(Math.random() * (max - min) + min, 10) to get the random number. It will give you and interval of [min, max] slices.


Post a Comment for "JQuery Slice Random Amount Of Divs"