Hi,
How can I rewrite this to work with the vbulletin blog rss
Code:
<script type="text/javascript" src="http://www.yoursite.com/forums/external.php?type=js"></script>
<script type="text/javascript">
<!--
var num_Of_Links = 10;
var forumName = "forum title";
var forumLink = "http://www.vbulletin.com/forumurl/";
var threadLink = forumLink + "showthread.php?t=";
document.writeln('<ul>');
for (i = 0; i < num_Of_Links; i++)
{
document.writeln('<li><a href="' + threadLink + threads[i]["threadid"] + '" target="new">' + threads[i]["title"] + '<\/a><\/li>');
}
document.writeln("<\/ul>");
//-->
</script>
Thanks for reading and helping
Cheers