/ Published in: JavaScript
Expand |
Embed | Plain Text
jQuery(document).ready(function() { var montraGen = (function () { /* CHANGE BELOW */ //DOM manipulation jQuery("#block-block-7").prepend("<div id='summer'></div>"); jQuery("#summer").prepend("<div id='summerads' style='height:200px'></div>"); jQuery("#summer").prepend("<h2>Sugest�µes de Ver�£o</h2>"); //configs var n = 4; //numero de slots var m = 20; //numero de montras var c= "#summerads"; //container onde vai ser gerada a montra var id = "318"; //zahir id tag var r = true; //randomize? true/false /* DO NOT CHANGE BELOW */ var random = function (){return (Math.round(Math.random())-0.5);}; //create the array and randomize it var a = []; for (i=1;i<=m;i++){a[i] = i;}; if (r) {a.sort(random);} if (m<n) {a = a.slice(0,n)} //gen the containers and zahir'em for (var i=0; i<n; i++) { jQuery(c).append('<div id="montra'+a[i]+'"></div>'); $.getScript('http://zahirx.aeiou.pt/pl/serve.pl?S='+id+'&F=javascript&D=/montra'+a[i]+'&ord='+random()); }; })(); });
You need to login to post a comment.
