English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2007-03-19 14:33:31 · 3 answers · asked by rikki 1 in Computers & Internet Programming & Design

3 answers

JavaScript is the foundational programming of all things interactive on a web page. For things to react to you on a web page requires JavaScript to be enabled. As do many video and Flash-enabled sites like YouTube and MySpace.

Go to Tools > Internet Options
Go to the Security tab
Click the "Custom Levels..." button near the bottom
Scroll down almost to the bottom of the list, where it says "Scripting". Underneath that it says "Active Scripting" and has choices for Enable, Disable, and Prompt. Choose "Enable"
and click OK, then click OK.

2007-03-19 14:37:37 · answer #1 · answered by Rex M 6 · 0 0

javascript is a language used to build webpages on the web. it allows people to use timeouts, popups and frames. it makes graphics move and allows the webpage to do more complex functions like run shopping carts. javascript is fixed by either a web designer, programmer or by looking in a book about the language. javascript for idiots is a great book to look in concerning the script. also try amazon.com for javascript books. Gossler is a great author on javascript. javascript is best fixed by a designer or programmer because you have to first look at the script. if there is one small problem it could throw the entire script off and the application won't work. i used that book to learn javascript in web design class. i hope this helps.

2007-03-19 14:49:47 · answer #2 · answered by terrica1234567676 1 · 0 1

Table Of Contents
JavaScript Guidelines JavaScript typeof
What is JavaScript?
Introduction

JavaScript is a scripting language used in many websites. A scripting language is a language, which is easy and fast to learn. So is this reference. A scripting language is interpreted in run-time. It is not compiled like other languages as C++, C#, VB.NET etc. JavaScript is a client side language and it runs on the client browser. Netscape developed it and because of its simplicity it is one of the most known scripting languages. However JavaScript can be also used on the server-side. JavaScript can be used on all most known browsers. It can be easily used to interact with HTML elements. You can validate text fields, disable buttons, validate forms, or change the background color of your page. All this is possible with JavaScript. Like each programming language, it contains variables, arrays, functions, operators, objects and much more which can be help you to create better scripts for your pages. On the server side you can use JavaScript for example to manage your database entry. JavaScript code can be inserted directly in the HTML or you can place it in a separate file with the .js extension and link the web page with the .js file.
Is JavaScript a lighter version of Java?

Many who haven’t worked before with java or scripting languages think that JavaScript is the same as Java or a lighter version of it. This is not true. Java is a different language developed by Sun Micro Systems. Java is much more complex then JavaScript. In Java you have to declare each variable with the type, in JavaScript you don’t need to do that. All variables are declared when you first time use them. Furthermore in Java you have to declare all variables, functions and classes. In JavaScript you don’t even need to think about these things. Java is compiled to byte codes on the server and the result is send to the client. JavaScript is interpreted on the client side it doesn’t require any compilation.
Usage of JavaScript

Usually web-designers design pages and coders code applications. However with JavaScript a designer has the possibility to create a client side application with very less efforts. He can easily create some kind of dynamic pages – i.e.: you can easily show a prompt box and asks the user to enter his name whenever the page loads for the first time. He can then use the entered value to create a welcome string. These procedures are called events. Events can be used and called when something occurs – like loading the page for the first time. You could also write another event which is called whenever the page is closed. JavaScript is also mostly used to validate text fields. For example in asp.net you have the possibility to validate your controls with some validator controls. These validator controls are basically nothing more then a JavaScript file. This validation can be easily written with JavaScript to verify if a text field is empty or not.

2007-03-19 14:42:01 · answer #3 · answered by Anonymous · 0 1

fedest.com, questions and answers