Computer Hope reports (with examples to illustrate):
"To write a JavaScript, you need a Web browser and either a text editor or an HTML editor. Once you have the software in place, you can begin writing JavaScript code. To add JavaScript code to an HTML document, you need to create or open an HTML file with your text/HTML editor. A basic HTML file has a docType and some basic HTML tags such as <html> <head> and <body>...When you see JavaScript code on the Web, you will sometimes see some JavaScript code between the <head></head> tags, or you may see it within the <body></body> tags (or even in both places). To separate JavaScript code from HTML code, you need to enclose it within a set of <script></script> tags. The opening <script> tag has one required attribute and one optional attribute. The required attribute is the type attribute, while the optional attribute is src (which allows you to point to an external script file, covered later in this answer). The value of the type attribute is set to text/javascript...As you can see, your JavaScript code is placed between the opening and closing script tags. As an example script, you could write a simple string of text directly on the Web page...Another option for including a JavaScript on a page is to create the script in an external text file and save it with a .js extension (making it a JavaScript file). The .js file is then included in the page using the src attribute of the opening script tag...You would then save the file with a .js extension. For instance, you could save it as write.js. Once the file has been saved, you can call it from the HTML code via the src attribute of the opening script tag...[This] procedure has the same effect as writing the code between the script tags, but won't clutter the HTML code with JavaScript code (which can become quite lengthy at times). Another advantage to this method is that the same script can be included in multiple pages, and editing the script file will update the script in every page that uses the external script file. Doing this makes it far easier to edit the script as it can be done in one place (rather than editing the code within the script tags on each page that contains the script). Now that you know how to add JavaScript code to a Web page, you can use any number of JavaScript example scripts or follow a JavaScript tutorial or book to learn more about JavaScript coding." Leave a Reply. |
Writing and editing can be pretty rigorous processes if you want to do them well, but that's what this page is here for. Check out the latest tips here. Archives
December 2024
CategoriesJ.D. Parsons
Author SEO Writer Proofreader Editor Internet Researcher |