You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
document.getElementById("loadingStatus").innerHTML="Got response 200 and start analyzing html...";
32
50
consthtml=data.contents;// HTML content of the fetched URL
33
51
constparser=newDOMParser();
@@ -111,7 +129,7 @@ async function checkSEO() {
111
129
112
130
// Display the overall status
113
131
if(jsonResults.length>0){
114
-
document.getElementById('result').innerHTML=`<span class="badge bg-success rounded-pill">${jsonResults.length}</span> meta tags found.`;
132
+
document.getElementById('result').innerHTML=`<span class="badge bg-success rounded-pill">${jsonResults.length}</span> meta tags found in ${formatResponseTime(responseTime)}`;
115
133
}else{
116
134
document.getElementById('status').textContent='No meta tags found.';
117
135
}
@@ -125,13 +143,29 @@ async function checkSEO() {
125
143
document.getElementById('tag-list').innerHTML=`
126
144
<div class="card">
127
145
<div class="card-body">
128
-
<p class="text-center mt-3">No tags found. Please try entering a URL and searching again. </p>
146
+
<p class="text-center mt-3">No tags found. Please try entering a URL and search. </p>
document.getElementById('loading').innerHTML=` <div class="spinner-border mt-5" role="status"><span class="visually-hidden">Loading...</span></div> </br> Searching meta tags , it may take while </br>`;
151
+
document.getElementById('loading').innerHTML=` <div class="spinner-border mt-5" role="status"><span class="visually-hidden">Loading...</span></div> </br> Searching meta tags , it may take while, we have to wait for response </br>`;
<title>MetaScope - Analyze and Optimize Meta Tags</title>
10
+
<metaname="description" content="MetaScope is an intuitive tool for analyzing website meta tags, including SEO, social media, and verification tags. It highlights missing or mismatched tags and presents results in a user-friendly format.">
11
+
<metaname="keywords" content="MetaScope, meta tags analyzer, SEO tags, social media tags, website optimization, SEO tools, tag checker">
12
+
<metaname="author" content="MetaScope Team">
13
+
<metaproperty="og:title" content="MetaScope - Analyze and Optimize Meta Tags">
14
+
<metaproperty="og:description" content="MetaScope helps analyze website meta tags for SEO, social media, and verification, making it easy to optimize your site for search engines and sharing.">
<metaname="twitter:title" content="MetaScope - Analyze and Optimize Meta Tags">
18
+
<metaname="twitter:description" content="MetaScope helps analyze website meta tags for SEO, social media, and verification, making it easy to optimize your site for search engines and sharing.">
0 commit comments