SEO SERP Preview Tool
Characters: 0 / 60
Characters: 0 / 160
Google Search Preview
https://www.yourdomain.com › page-slug
Your SEO Title Will Appear Here
Your meta description will be displayed here. A well-written description helps increase click-through rates from the search engine results page.
function updateSerpPreview() {
var titleValue = document.getElementById('seoTitleInput').value;
var descValue = document.getElementById('seoDescInput').value;
var previewTitle = document.getElementById('previewTitle');
var previewDesc = document.getElementById('previewDesc');
var titleCounter = document.getElementById('titleCounter');
var descCounter = document.getElementById('descCounter');
// Update Title Preview
if (titleValue.length > 0) {
previewTitle.innerText = titleValue;
} else {
previewTitle.innerText = 'Your SEO Title Will Appear Here';
}
// Update Description Preview
if (descValue.length > 0) {
previewDesc.innerText = descValue;
} else {
previewDesc.innerText = 'Your meta description will be displayed here. A well-written description helps increase click-through rates from the search engine results page.';
}
// Update Counters and Colors
titleCounter.innerText = 'Characters: ' + titleValue.length + ' / 60';
if (titleValue.length > 60) {
titleCounter.style.color = '#d93025';
} else if (titleValue.length > 50) {
titleCounter.style.color = '#1e8e3e';
} else {
titleCounter.style.color = '#666';
}
descCounter.innerText = 'Characters: ' + descValue.length + ' / 160';
if (descValue.length > 160) {
descCounter.style.color = '#d93025';
} else if (descValue.length > 120) {
descCounter.style.color = '#1e8e3e';
} else {
descCounter.style.color = '#666';
}
}
function clearFields() {
document.getElementById('seoTitleInput').value = ";
document.getElementById('seoDescInput').value = ";
updateSerpPreview();
}