Is it possible to show in a blog-like webpage the last three posts only with JavaScript? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Is it possible to show in a blog-like webpage the last three posts only with JavaScript?

In order to train myself and improve my knowledge about JavaScript, I am planning to code a function that is able to show inside a simple blog-like HTML webpage the last three posts. These latter should be stored as simple text files with little HTML formatting tags inside a folder and their name should be the date on which the post has been published. Is it possible to do this with JavaScript? In particular, is it possible to scan a website folder and create an array of file names? Furthermore, is it possible to read a text file and then print it inside the main HTML webpage? Thanks in advance for your help.

4th Jan 2017, 1:31 AM
Rodolfo Cangiotti
Rodolfo Cangiotti - avatar
3 Answers
+ 2
just use the create objects of DOM in JavaScript
19th Jan 2017, 4:20 AM
Ian
Ian - avatar
+ 1
@Ian The code included in your answer is not properly clear. Can you please explain it a bit more?
4th Jan 2017, 2:55 AM
Rodolfo Cangiotti
Rodolfo Cangiotti - avatar
0
yes you can use DOM and function x { document.getElementById("some id") prompt("something") var a = input; document.createElement("p") p.append(a); x(); } this is an example but that is bacically how you would do it
4th Jan 2017, 1:41 AM
Ian
Ian - avatar