From 5f01f6ad44e0605ab6c5a0df9c8986038eb92c8d Mon Sep 17 00:00:00 2001 From: TheConciergeDev <65483817+TheConciergeDev@users.noreply.github.com> Date: Fri, 25 Jun 2021 10:01:03 +0200 Subject: [PATCH] extend jQuery version detection via js Only `jQuery.fn.jquery` did not work on some major sites. Found more here: https://stackoverflow.com/questions/55722181/jquery-version-check/55722259#55722259 --- src/technologies.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/technologies.json b/src/technologies.json index 161fd1822..9a48f9a2c 100644 --- a/src/technologies.json +++ b/src/technologies.json @@ -23502,7 +23502,9 @@ "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.", "icon": "jQuery.svg", "js": { - "jQuery.fn.jquery": "([\\d.]+)\\;version:\\1" + "jQuery.fn.jquery": "([\\d.]+)\\;version:\\1", + "$().jquery": "([\\d.]+)\\;version:\\1", + "$.fn.jquery": "([\\d.]+)\\;version:\\1" }, "scripts": [ "jquery[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1",