+ 2

How to use js

🤔🤔🤔🤔

18th Feb 2018, 11:13 AM
Tofik patel
4 odpowiedzi
+ 15
JavaScript is most commonly used as a client side scripting language. Thismeans that JavaScript code is writteninto an HTML page. When a user requests an HTML page with JavaScript in it, the script is sent to the browser and it's up to the browser to do something with it. https://www.w3schools.com/js/
18th Feb 2018, 11:28 AM
Abhivarshini Maddala
Abhivarshini Maddala - avatar
+ 5
JS makes your website responsive😉
18th Feb 2018, 12:59 PM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 4
JavaScript is one of the 3 languages all web developers must learn:    1. HTML to define the content of web pages    2. CSS to specify the layout of web pages    3. JavaScript to program the behavior of web pages https://www.w3schools.com/js/ this article will help you 💚
18th Feb 2018, 1:03 PM
Baraa AB
Baraa AB - avatar
+ 3
Hello. Put your JavaScript code between <script></script> tags in your HTML project. If you don't want to use HTML, only JS, then still save your project as HTML, but don't put any HTML content in it. Example: <!DOCTYPE html> <html> <head> </head> <body> <script>*your code*</script> </body> </html> You can create JavaScript and HTML code in a simple text editor on your computer and save the file as *name*.html. Then you can simply click it and the project is run on your web browser. More info: https://www.w3schools.com/html/html_scripts.asp
18th Feb 2018, 11:28 AM
Augustinas Lukauskas
Augustinas Lukauskas - avatar