Ingyenes AI holapelemzés

Gyors, pontos és személyre szabott elemzések egy kattintásra.
Ingyenes holapelemzés

Weboldalad teljesítményének és technikai hibáinak feltárása soha nem volt ilyen egyszerű! Töltsd ki űrlapunkat, és automatizált AI rendszerünk lefuttat egy gyors tesztet, valamint elemzi a honlapod forráskódját. Az eredményeket egy részletes, ingyenes Google Slides prezentációban küldjük el neked, amely világos javítási javaslatokat tartalmaz, időt és energiát spórolva neked.

Mi a teendő?

Pár egyszerű lépésben jobbá teheted a weboldalat.





jQuery(document).ready(function($) { $('#contact-form').on('submit', function(event) { event.preventDefault(); // Prevent the form from submitting normally // Gather form data var name = $('#name').val(); var email = $('#email').val(); var website = $('#website').val(); var longtext = $('#longtext').val(); // Basic validation: Check if all fields are filled and format the website URL correctly if (name !== '' && email !== '' && website !== '' && longtext !== '') { // Ensure the website URL starts with http:// or https:// if (!website.match(/^https?:\/\//)) { website = 'https://' + website; } // Send data to the webhook URL jQuery.ajax({ type: "POST", url: 'https://hook.eu2.make.com/lq8zca1232u689qjno2iwyxok86ietn7', // Replace with your webhook URL data: JSON.stringify({ name: name, email: email, website: website, longtext: longtext }), contentType: "application/json; charset=utf-8", dataType: "text", // Expect plain text to avoid JSON parsing errors success: function(response) { console.log('Response:', response); alert('Form submitted successfully!'); $('#contact-form')[0].reset(); // Clear the form fields }, error: function(xhr, status, error) { console.error('Error:', error); alert('An error occurred while submitting the form.'); } }); } else { alert('Please fill in all fields.'); } }); });