How to enable JavaScript in Windows ? Last Updated : 10 Nov, 2021 Comments Improve Suggest changes Like Article Like Report Whenever you are browsing through some websites, you can observe that some of the blocks are not displayed properly. Instead of behaving dynamic, they are just standstill like any other static page which is very undesirable to the user. This behavior is mainly because of not enabling JavaScript on your browser in windows. JavaScript plays a main role nowadays in the creation of a webpage by adding behaviors to the website turning it into an interactive dynamic page. Therefore, let us see in this article how one can enable scripting in windows. Step 1: Please open Google Chrome or any web browser that you use. Step 2: Click on the Show more option ( three vertical dots) and select Settings from the list as shown in the below screenshot. Step 3: Then, Click on Privacy and security on the left side of the Settings page as shown below. Step 4: Click the Site Settings option on the Privacy and security page. Step 5: Scroll down the Site Settings page and select the JavaScript under the Content section as shown below. Step 6: Finally, Click on the radio button that says "<> Sites can use JavaScript" as shown in the below image. Now you can continue using google chrome which has enabled JavaScript for all the websites you browse without the need for system restart. Comment More infoAdvertise with us Next Article How to enable JavaScript in Windows ? S supriaprabhu4 Follow Improve Article Tags : JavaScript Web Technologies How To JavaScript-Questions Similar Reads How to enable JavaScript in my browser ? We will explore the process of enabling JavaScript in web browsers to ensure seamless functionality of applications and websites. JavaScript serves as a fundamental component of modern web development, facilitating dynamic interactions and enhanced user experiences. However, encountering issues wher 2 min read How to Enable JavaScript on a MacOS? JavaScript is a programming language used to create dynamic content on web pages, such as animations or real-time updates, without needing to refresh the page. Enabling JavaScript in your browser is essential for a smooth online experience, like automatic updates on Facebook or Twitter timelines. In 2 min read How to Enable JavaScript on Android ? JavaScript is the world's most popular lightweight, interpreted compiled programming language. It is also known as a scripting language for web pages. It is well-known for the development of web pages, many non-browser environments also use it. Therefore nowadays it is essential for users to have Ja 2 min read How to trigger events in JavaScript ? JavaScript is a high-level, interpreted, dynamically typed client-side scripting language. While HTML is static and defines the structure of a web page, JavaScript adds interactivity and functionality to HTML elements. This interaction is facilitated through events, which are actions or occurrences 2 min read How to disable JavaScript in Chrome Developer Tools? In many situation, we may find it useful to inspect how a webpage appears without the influence of JavaScript. Disabling JavaScript allows us to observe the baseline functionality and styling of a site. In this tutorial, we'll focus on how to achieve this in Chrome Developer Tools, a powerful toolse 2 min read How to close current tab in a browser window using JavaScript? In this article, we will see how to close the current tab in a browser window using JavaScript. window.close() methodTo make this, we will use window.close() method.  This method is used to close the window which is opened by the window.open() method. Syntax:window.close();But accounting for a secur 1 min read How JavaScript Works? JavaScript is a dynamically typed, cross-platform threaded scripting and programming language, used to put functionality and interactivity at the client side as well as to write logic on the server side of a website. It can display content updates, interactive maps, control multimedia, interactive f 13 min read How to Run JavaScript in Visual Studio? To run JavaScript in Visual Studio, you can either use Node.js in the Terminal or the Code Runner extension. Both methods allow you to execute JavaScript code easily and efficiently within the Visual Studio environment.Using Node.js in TerminalNode.js is a JavaScript runtime that allows you to execu 2 min read How to Add JavaScript in WordPress Page and Post? WordPress doesnât allow you to directly add JavaScript code to your site, you can achieve this by using plugins or manual methods. JavaScript is a popular programming language that allows you to add interactive features to your website. Learning how to add JavaScript to your WordPress site can help 3 min read How to Add JavaScript in HTML Document? To add JavaScript in HTML document, several methods can be used. These methods include embedding JavaScript directly within the HTML file or linking an external JavaScript file.Inline JavaScriptYou can write JavaScript code directly inside the HTML element using the onclick, onmouseover, or other ev 3 min read Like