javascript not available in console – Jquery
I am writing script tags from the console to my test.html file: test.html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery load() Demo</title> </head> <body> <p>nothing</p> </body> <script> </script> from console: var script = document.createElement('script');script.src = "https://code.jquery.com/jquery-3.6.4.min.js";document.getElementsByTagName('head')[0].appendChild(script); var script2 =…