BBCODE| text loop/text repeats itself/double text
Posted: 15 Aug 2010, 16:08
author: Yotam
this bbcode doubles your text in it how many times you want.
bbcode:
html:
example:
this bbcode doubles your text in it how many times you want.
bbcode:
Code: Select all
[loop={NUMBER}]{INTTEXT}[/loop]
Code: Select all
<script type="text/javascript">
var x = 0;
for (x=0;x<={NUMBER};x++)
{
document.write("{INTTEXT}" + " ");
}
</script>
Code: Select all
[loop=5]text loop XD[/loop]