views
Enabling JavaScript
Make sure you have JavaScript turned on in the browser. It is on by default, but it could have been changed by another user. If you're using your company's PC, it may have certain restrictions regarding the use of JavaScript.
Click the Customize and Control Google Chrome button in the top right corner of the browser (the icon with the 3 horizontal lines).
Select Settings from the drop down menu.
Scroll to the bottom and click Show advanced Settings.
Select Content Settings under Privacy. A box with a list of settings will appear. Enable or Disable JavaScript is the last option. Select "Enable".
Checking It With a Console Alert
Open the JavaScript Console. Once you have checked that JavaScript is enabled in your browser, open the JavaScript Console, which is part of the Chrome Developer Tools.
Click the Icon on the right hand corner again. Select More tools --> Developer Tools, and it will open the console in the browser that you are currently using. Make sure the Console tab is selected.
Clear the Console. If there is anything in the Console, type clear() and it will clear the Console. Type alert("Hello World"); and press enter. An alert box should pop up in the browser with the message you typed. You can put any words you want in between the quotes. If you want to add an alert to an html file you can add it by using a script tag.
Comments
0 comment