I
I
iTaurusi2018-02-15 15:05:14
JavaScript
iTaurusi, 2018-02-15 15:05:14

Displaying a random article in the sidebar?

Greetings.
How can I implement the output of a random article or picture in the sidebar using JS?
I'm not interested in the code itself, but in the idea of ​​how to do it?
Although I will not refuse direct hints with the code :)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
nchur, 2018-02-15
@nchur

With Math.random

B
Barmunk, 2018-02-15
@Barmunk

You can also query from the database at once randomly
mysql

SELECT column FROM table
ORDER BY RAND()
LIMIT 1

mssql
SELECT TOP 1 column FROM table
ORDER BY NEWID()

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question