how to know this?

nayannp

Power Member
Joined
Oct 1, 2017
Messages
740
Reaction score
199
hey guys I wanted to ask a programming related question
so in a website page how do i know which version of jquery ajax is it using?
 
Just look at page source code and usually
in header section you will find links in script
tags that are calling regular or more commonly
minified version of javascript libraries they are
using. Sometimes those special linking tags
may be found in body section of page too.
 
Script tag starts with:

Code:
script src

and library address part looks like:

Code:
jquery-1.11.3.min.js

So this scrip tag loads jquery version 1.11.3

Cant post actual tag here since its blocked by cloudflare,
even when embeded in code tags.
 
Right-clicking to view the source code, as already mentioned, is pretty much the way to do it. There's also online tools like BuiltWith that you can use, or Wappalyzer, in a general sense for such things.
 
Back
Top