Closing Cost Calculator Seller

SEO Title & Meta Preview Tool

Characters: 0
Characters: 0
Google Preview:
Page Title Example
https://yourwebsite.com/page-url
Please enter a description to see how it will appear in the search engine result pages.
function updateSeoPreview() { var titleVal = document.getElementById('seo-title-input').value; var descVal = document.getElementById('seo-desc-input').value; var titlePreview = document.getElementById('preview-title'); var descPreview = document.getElementById('preview-desc'); var titleCount = document.getElementById('title-count'); var descCount = document.getElementById('desc-count'); titlePreview.innerText = titleVal || "Page Title Example"; descPreview.innerText = descVal || "Please enter a description to see how it will appear in the search engine result pages."; titleCount.innerText = "Characters: " + titleVal.length; descCount.innerText = "Characters: " + descVal.length; if (titleVal.length > 60) { titleCount.style.color = "red"; } else { titleCount.style.color = "#666"; } if (descVal.length > 160) { descCount.style.color = "red"; } else { descCount.style.color = "#666"; } } function resetSeoTool() { document.getElementById('seo-title-input').value = ""; document.getElementById('seo-desc-input').value = ""; updateSeoPreview(); }

Leave a Comment