Tagged Questions

2
votes
6answers
341 views

time-sensitive css stylsheet switching using javascript

I'm trying to switch my css stylesheets depending on the time. One during the day, and one during the night. I'm a newbie when it comes to java, but i've been reading alot on javascript and have ...
1
vote
5answers
226 views

Timed text swap?

is it possible to swap a paragraph of text with javascript/jQuery? I want a delay timer of about 5 seconds, and then the text should swap to something else, like a image slide. Would be awesome with ...
1
vote
4answers
3k views

Using JQuery, how can I make a <div> appear, then add some html, then remove the html and then hide the div?

<div id="message" style="display: none"> <!-- Here I want to place a message. It should be visible for 3 seconds.Then clear the div to get ready for the next message. --> ...
0
votes
1answer
93 views

Hide page content until specific time in video

My staff and I have been researching how to set up a page to have hidden content, that appears at a specific point in a Youtube video. We got there quickly at first by using the settimeout() ...
0
votes
5answers
61 views

javascript array timed

I'm missing some little thing.. prints the array but doesn't wait in between lines. <script type="text/javascript"> function showLines() { arr = [ "Hi!", "Welcome!", "Hello!" ] var ...
0
votes
2answers
254 views

Chrome Extension Timed Redirection

What I'm trying to achieve is make a chrome extension run in the background, and every minute it'll redirect to google.com and then a minute later redirect to stackoverflow.com and so on continuously ...