View Single Post
ישן 28-06-07, 12:27   # 16
Daniel
אחראי פורום
 
מיני פרופיל
תאריך הצטרפות: Mar 2007
הודעות: 2,875

Daniel לא מחובר  

PHP קוד:
<script type="text/javascript">
function 
rand()
{
quotes = new Array(3);
quotes[0] = "sddd";
quotes[1] = "dfdfff";
quotes[2] = "gggg";
index Math.floor(Math.random() * quotes.length);
document.getElementById('a').innerHTML quotes[index];
}
rand();

setInterval("rand()"1000);

</script>

<marquee><div id='a'>t</div></marquee> 
למרות שיכול להיות שאפשר ישירות לעשות innerHTML למרקויי.
  Reply With Quote