loop thru images in a directory
Hi I have very little experience using jQuery.
I'm creating a gallery of paintings, below is the html for 1 painting
- <div class="d-flex flex-row flex-wrap justify-content-center">
- <div class="d-flex flex-column align-items-center justify-content-center">
- <img class="img-fluid" src="images\landscape0.jpeg">
- <div class="tit-siz">
- <div style="float: left">
- <h4>Landscape</h4>
- </div>
- <div style="float: right">
- <p style="float: right" class="card-text">23cm x 18cm</p>
- </div>
- </div>
- </div>
Is there a way to loop thru the images in the images folder and insert the title and size using jQuery?
Thanks for any help