How to add jQuery in browser for testing.
- Using javascript
- IN browser where jQuery not enabled by default
Like using script tag???
How to add jQuery in browser for testing.
Like using script tag???
You can use this snippet to inject jQuery using developer console
var script = document.createElement('script');
script.src = "https://code.jquery.com/jquery-3.6.0.js";
document.head.appendChild(script);