So that's my question, (I know it could be a very easy one but I ma completely new to JavaScript). So I have a list of quotes. I need a script that every time the user click wherever part of the window it changes the quote, based on the chronological order I want. And then when the quotes are finished restart again. So let me say as soon the user open the page I have a paragraph with quote1 than the user click everywhere and this happens: the same paragraph get the quote2.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It's pretty hard to be specific with an answer because you leave a lot of open questions. But, conceptually here are the steps:
If your HTML was this:
And, you want a click of this button to change the quote:
or if you want a click anywhere in the page, you could use this for your body tag:
Then, you could do so with this code:
If you really want a click anywhere in the page to rotate the quote (which seems unlikely to be the right design), then you can assign the click handler to the body tag instead. |
|||||||||||
|
|
Try something like this:
|
|||
|
What have you try? Here i use jquery for faster code
|
|||||||
|
