Thanks for the feedback. Unfortunately it doesn’t seem to work! I used the script exactly as described! The images in the slider are still displayed in the same order. Above the script, I only have a style specification for the head area. This is what the content of my field looks like:
<style>
body { min-width: 930px !important; }
.box90 { width: 930px !important; }
</style>
<script type=”text/javascript”>
jQuery.fn.randomize = function(selector){
var jQueryelems = selector ? jQuery(this).find(selector) : jQuery(this).children(),
jQueryparents = jQueryelems.parent(); jQueryparents.each(function(){
jQuery(this).children(selector).sort(function(){
return Math.round(Math.random()) – 0.5;
}).detach().appendTo(this);
}); return this;
};
jQuery(document).ready(function() {
jQuery(‘.slides-container’).randomize(‘li’); });
</script>