Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 533 Bytes

AddJQurey.md

File metadata and controls

18 lines (16 loc) · 533 Bytes

Run this code in console

(function() {
  // Load the script
  const script = document.createElement("script");
  script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js';
  script.type = 'text/javascript';
  script.addEventListener('load', () => {
    console.log(`jQuery ${$.fn.jquery} has been loaded successfully!`);
    // use jQuery below
  });
  document.head.appendChild(script);
})();

You can use jqurey functions in console

W3 Schools