Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Comments

One response to “Hello world!”

  1. A WordPress Commenter Avatar

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Leave a Reply

Your email address will not be published. Required fields are marked *

document.addEventListener('wpcf7submit', function(event) { var websiteUrl = event.detail.inputs['website_url'].value; // Get the URL from the form if (!websiteUrl) { alert("Please enter a website URL."); return; } // Send the URL to the Flask API for SEO score fetch('https://yourdomain.com/seo_checker/get-seo-score', { method: 'POST', body: new URLSearchParams({ 'website_url': websiteUrl }) }) .then(response => response.json()) .then(data => { if (data.score) { let resultHTML = `

Your SEO Score: ${data.score}

'; document.getElementById('seo-result').innerHTML = resultHTML; } else { document.getElementById('seo-result').innerHTML = `Error: ${data.error}`; } }) .catch(error => { console.error('Error:', error); document.getElementById('seo-result').innerHTML = 'Failed to fetch SEO score'; }); }, false);