TARIHUA

Votre Boutique en Ligne - Produits

Votre Boutique en Ligne - Produits Variés
Produit 1

Nom du Produit 1

Description du Produit 1

Prix: $100

  • Votre Panier

    Passer une Commande



    Options de Paiement:


    var readButton = document.getElementById("readButton"); var textContainer = document.getElementById("textContainer"); readButton.addEventListener("click", function() { var xhr = new XMLHttpRequest(); xhr.open("GET", "votre_fichier.txt", true); // Remplacez "votre_fichier.txt" par le chemin de votre fichier texte. xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { textContainer.innerHTML = xhr.responseText; } }; xhr.send(); });