| 1 | jQuery(document).ready(function () { |
| 2 | jQuery('.strong-view').randomize('.wpmtst-testimonial'); |
| 3 | }); |
| 4 | |
| 5 | jQuery.fn.randomize = function(selector){ |
| 6 | (selector ? this.find(selector) : this).parent().each(function(){ |
| 7 | jQuery(this).children(selector).sort(function(){ |
| 8 | return Math.random() - 0.5; |
| 9 | }).detach().appendTo(this); |
| 10 | }); |
| 11 | |
| 12 | return this; |
| 13 | }; |