i just want to use text for this so i can style it with the css.
any thoughts?
TIA
Welcome to BleepingComputer, a free community where people like yourself come together to discuss and learn how to use their computers. Using the site is easy and fun. As a guest, you can browse and view the various discussions in the forums, but can not create a new topic or reply to an existing one unless you are logged in. Other benefits of registering an account are subscribing to topics and forums, creating a blog, and having no ads shown anywhere on the site.
Posted 03 March 2010 - 09:20 PM
Posted 03 March 2010 - 09:45 PM
Quote
Posted 03 March 2010 - 10:41 PM
Posted 04 March 2010 - 12:48 AM
This post has been edited by KamakaZ: 04 March 2010 - 12:48 AM
Posted 04 March 2010 - 01:04 AM
This post has been edited by Chip Smith: 04 March 2010 - 01:05 AM
Posted 04 March 2010 - 01:41 PM
Posted 05 March 2010 - 04:49 PM
<script type="text/javascript">
var i=0,
links = [
'Some text goes here',
'Some text with [link]web address[/link] goes here',
'[img]image[/img] Some text with image goes here'
],
seconds = 10;
function rotator(){
setTimeout("changeLink()", 1000 * seconds);
}
function changeLink(){
document.getElementById('myDiv').innerHTML = '<a href='+links[i]+'>' + links[i] + '</a>';
i+=1;
if(i===links.length){
i=0;
}
rotator(); }
</script>
Posted 05 March 2010 - 05:24 PM
Quote
Quote
links = [ 'I am a Bing Link: <a href="http://www.bing.com">Click Here for Bing</a>', 'Click here for really cool things: <a href="www.bleepingcomputer.com">Malware Removal</a>', ..... ],
document.getElementById('myDiv').innerHTML = links[i];
Posted 05 March 2010 - 05:26 PM
Posted 05 March 2010 - 09:20 PM
Posted 05 March 2010 - 10:04 PM
Posted 07 March 2010 - 02:17 AM
Posted 07 March 2010 - 08:51 AM