So I have to do a project for school, I need to create a simple website who uses an API. I want to use the genius API to collect the lyrics but you can't because of copyright. I can only use the API to find certain information about a song like creator, url of the cover{image}, or song link (genius). So if I want to get the lyrics I need to scrape the link of the song. I have some problems with scraping because it's usually accomplished with node.js and I can't use node.js because it's not allowed in the project.
Do anybody have an idea how to scrape this link to find the lyrics only with pure javascript (i can also use jQuery): https://genius.com/Lil-peep-white-tee-lyrics
I know that the html page contain a tag and all the lyrics are here.
Example :
<div class="lyrics">
<p> This is the lyrics</p>
</div>
If anybody has an idea it would be very helpful. Thanks
within a div using jQuery](https://stackoverflow.com/questions/11077977/selecting-p-within-a-div-using-jquery)
– Rafik Farhad May 28 '20 at 17:57