Calculate Cost per Lead

Google Search Preview Tool

0 / 60 characters
0 / 160 characters
Example.com
https://example.com › page
Your Page Title Will Appear Here
Your meta description will appear here. It should be concise and include your target keywords to improve CTR.
function updateSEOPreview() { var titleInput = document.getElementById('meta-title-input'); var descInput = document.getElementById('meta-desc-input'); var previewTitle = document.getElementById('preview-title'); var previewDesc = document.getElementById('preview-desc'); var titleCount = document.getElementById('title-count'); var descCount = document.getElementById('desc-count'); var titleVal = titleInput.value; var descVal = descInput.value; // Update Preview previewTitle.innerText = titleVal || 'Your Page Title Will Appear Here'; previewDesc.innerText = descVal || 'Your meta description will appear here. It should be concise and include your target keywords to improve CTR.'; // Update Counts titleCount.innerText = titleVal.length + ' / 60 characters'; descCount.innerText = descVal.length + ' / 160 characters'; // Color Indicators titleCount.style.color = (titleVal.length > 60) ? '#d93025' : '#70757a'; descCount.style.color = (descVal.length > 160) ? '#d93025' : '#70757a'; } function clearFields() { document.getElementById('meta-title-input').value = "; document.getElementById('meta-desc-input').value = "; updateSEOPreview(); }

Leave a Comment