<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

var banners = [    
    //'https://savingmea.com/coo/noon_2020.png|https://www.savingmea.com/store/noon/?utm_source=sm&amp;utm_medium=tbnr&amp;utm_campaign=noon',
    
];

banners=shuffle(banners);

jQuery(document).ready(function() {
    mybnr();    
});


function shuffle(arra1) {
    var ctr = arra1.length, temp, index;

// While there are elements in the array
    while (ctr &gt; 0) {
// Pick a random index
        index = Math.floor(Math.random() * ctr);
// Decrease ctr by 1
        ctr--;
// And swap the last element with it
        temp = arra1[ctr];
        arra1[ctr] = arra1[index];
        arra1[index] = temp;
    }
    return arra1;
}



function mybnr(){ 
                jQuery.each(banners,function(key,value){
                    jQuery(".inner-content").prepend("&lt;a href='" + value.split('|')[1] +"'&gt;&lt;img style='border: 1px solid silver;margin: -10px 0 15px 0;' class='img img-responsive' src='" + value.split('|')[0] + "'&gt;");
                     return false;
                }); 
            }</pre></body></html>