tags:

views:

44

answers:

3

Can you please tell me some client-side scripting languages?Thanx in advance.

A: 

JavaScript would be the most used one, VBScript is also in use but not even close to the usage of JavaScript

SQLMenace
+2  A: 

From http://en.wikipedia.org/wiki/Client_side_scripting

Web authors write client-side scripts in languages such as JavaScript (Client-side JavaScript) and VBScript.

LeguRi
+2  A: 

The two most common are Javascript and JScript. Javascript is Netscape's implementation of the ECMA-script standard and what the language is commonly called, JScript is Microsoft's implementation. The script tag uses the type "text/javascript" and the browser uses it's own implementation, thus Internet Explorer uses JScript to run the Javascript code.

In Internet Explorer you can also use VBScript. This is not very commonly used, as no other browser implements it.

Guffa
+1 for the ECMA-script standard
LeguRi