Questions tagged [jquery]
jQuery is a cross-browser Javascript library that provides abstractions for DOM traversal, event handling, animation, and Ajax interactions for rapid web development.
132 questions
4
votes
2
answers
2k
views
Does inserting meta elements into the <head/> using JS effect SEO?
I am developing a static HTML/CSS website I have multiple meta tags I add to the head on each page. As it stands currently whenever I want to change the meta information I need to manually update each ...
2
votes
1
answer
433
views
Dynamically loaded content on webpage not recognized in keyword density checker - does Google do the same, and can I fix it?
Context
I have a website. On one of my pages, users can create articles. They fill out a form with their article and the article is placed in my database. There is another page where users' articles (...
1
vote
1
answer
208
views
Does using jquery 1.12.4 (reported as vulnerable) affect SEO?
Can jquery 1.12.4 used on a website affect search engine rankings (especially of that of Google)? Several forums and websites have discussed vulnerabilities with this particular version of jquery.
Ref:...
1
vote
2
answers
52
views
How to avoid same page loading of auto-complete results from hurting SEO
I am working on a project which makes use of autocomplete.js, the demo for it is here. The user chooses an option and the result will be shown on the same page, just like in the demo. The project ...
1
vote
0
answers
69
views
Google Search not properly indexing AJAX-loaded pages [closed]
I have a static website which uses async jQuery to generate articles (as well as titles and other metadata) sourced from a file (something like $('main').load('/data #location.pathname')). The only ...
2
votes
3
answers
204
views
Is it best practice to download jquery css or js files to use on website
I have in the past copy and paste a jquery css or js url into my projects.
Recently the question has come up, what if the urls stopped working for some unforeseen reason. Either code.jquery.com is ...
4
votes
1
answer
8k
views
How can I track button click in google analitycs?
I had register my website in the google analytics and I had put the script in my default index like this :
<html>
<head>
<meta name="google-site-verification" content="**********...
3
votes
2
answers
4k
views
Can it save the google tag manager script in an external js file?
My default index html like this :
<html>
<head>
<meta name="google-site-verification" content="****************" />
<script async src="https://www.googletagmanager.com/...
2
votes
1
answer
992
views
How can I combining many external Javascript scripts into one?
I check my website using gtmetrix and my website is recommended for fewer HTTP requests and reduce DNS lookups. So I must to combining combining many external Javascript scripts into one
In my layout ...
1
vote
1
answer
1k
views
Does loading a NavBar with a jQuery .load function, allow that NavBar content to be “seen” by search engine crawlers?
I have a conceptual question about using jQuery to load a NavBar on all pages of a small website I have.
On this below stackoverflow page, user Ramtin shows how I could use jQuery to load a NavBar ...
2
votes
1
answer
177
views
How can I fix JavaScript error for my live tested page in Google Search Console? [closed]
This is is a screenshot of my tested page on search console. Can Googlebot read this error and dramatically effect my ranking?
1
vote
1
answer
233
views
What is it called when an HTML block floats while scrolling down the content until something else takes its place?
Recently updated my blog and was looking for the improvements they have added. I noticed a floating section of text that stayed there until a part of description ended. (Similar to the timestamp on ...
1
vote
1
answer
779
views
Clicking on the downloaded jQuery file gives errors from the source "Microsoft JScript compilation error"
When trying to open Jquery after installing it on Chrome, I get this error:
And when I download it on Firefox, I get this error:
Can anyone tell me how to fix these issues? I'm using Windows 10, if ...
3
votes
1
answer
176
views
Does Google index JavaScript ALTERED content over original content?
I know Google nowadays is pretty good at scanning the DOM and adding stuff to your site using javascript isn't a problem anymore.
Thing is, I'm using JavaScript (jQuery) to collect information from a ...
2
votes
2
answers
5k
views
Is loading the article content using jQuery & AJAX bad for SEO?
I am loading the content of main article using jQuery . Is it effective for SEO? Is it bad practice?
For example I have a page URL example.com/ariticle?seid=14
Here when the page loads, I fetch the ...