iframe.ts 339 B

12345678910111213
  1. const iframe = new iFrame();
  2. iframe.on("UpdateData", async () => {
  3. const artist = document.querySelector(".artiste"),
  4. title = document.querySelector(".titre");
  5. if (artist && title) {
  6. iframe.send({
  7. artist: artist.textContent,
  8. song: title.textContent.split(".")[0], // Get only the title without the extension file
  9. });
  10. }
  11. });