i have banners.js which has my teen solo sites in it and i have banners2.js which has all other sites reality sites and so on. i just wanted to seperated the 2. is there any way i can put them on a site but load them randomly?
javascript question for the programmers
Collapse
X
-
javascript question for the programmers
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

Totally Free TemplatesTags: None -
<script>
var ran_number=Math.round(Math.random()) + 1;
document.write ('<script src=banner' + ran_number + '.js'></script>');
</script>
something like this I think...Comment

Comment