Questions tagged [javascript]

JavaScript (not to be confused with Java) is a dynamic, weakly-typed language used for client-side as well as server-side scripting. Use this tag for questions regarding ECMAScript and its various dialects/implementations (excluding ActionScript and Google-Apps-Script). Unless another tag for a framework/library is also included, a pure JavaScript answer is expected.

JavaScript is a dynamic, object-based, duck-typed, prototype-based, weakly typed language traditionally used for client-side scripting in web browsers. can also be run outside of the browser with the use of a framework like , , , or . Despite the name, it is unrelated to the Java programming language and shares only superficial similarities.

Unless a tag for a framework or library is also included, a pure JavaScript answer is expected for questions with the tag.

JavaScript runs on nearly every Operating System, and an engine is included in mainstream web browsers. Developed in 1995 by Brendan Eich at Netscape Communications, it was originally called LiveScript but was renamed to JavaScript due to Netscape's friendly relationship with Sun Microsystems at the time.

Standalone JavaScript engines or interpreters are available as well, including:

  • Mozilla's , the first JavaScript engine ever written, currently used in Mozilla Firefox.
  • , Google's JavaScript interpreter, used in Google Chrome.
  • , a cloud-based / server-side interpreter that provides programmatic "macro-like" control of Google Apps services and documents.
  • , built on top of , a platform which enables server-side applications to be written in JavaScript.
  • Windows includes , a JavaScript variant in Windows Script Host.
  • Mozilla also offers , an implementation of JavaScript built in Java, typically embedded into Java applications to provide scripting to end users.
  • (except for the Chromium project) implements the engine.
  • (originally derived from HyperTalk) is now an ECMAScript dialect and uses a lot of ECMAScript APIs.
  • Embeddable, portable ECMAScript engine in C with small memory footprint.
  • a framework, IDE, and Server built on supporting server-side JavaScript
  • A Meteor application is a mix of client-side JavaScript that runs inside a web browser or PhoneGap mobile app, server-side JavaScript that runs on the Meteor server inside a Node.js container. (according to MeteorJS docs )

The Mozilla Developer Network contains high-quality documentation on JavaScript.

JavaScript is typically used to manipulate the Document Object Model (DOM) and Cascading Style Sheets (CSS) within the browser. This allows user interface scripting, animation, automation, client-side validation, and much more.

With the recent emergence of platforms such as Node.js, JavaScript can now be used to write server-side applications. In addition, it is also used in environments that aren't web-based, like PDF documents, site-specific browsers, desktop widgets etc.

Nomenclature

Although it was developed under the name Mocha, the language was officially called LiveScript when it first shipped in beta releases of Netscape Navigator 2.0 in September 1995, but it was renamed JavaScript when it was deployed in the Netscape browser version 2.0B3.

The change of name from LiveScript to JavaScript roughly coincided with Netscape adding support for Java technology in its Netscape Navigator web browser. The final choice of name caused confusion, giving the impression that the language was a spin-off of the Java programming language, and the choice has been characterized as a marketing ploy by Netscape to give JavaScript the cachet of what was then the hot new web programming language.

People often use the term JavaScript informally. The language and the term originated from Netscape. ECMAScript, JavaScript, and JScript are terms that are easy to confuse.

ECMAScript was developed as a standardization of Netscape's JavaScript and Microsoft's independently-developed JScript. The canonical reference is the ECMAScript® 2015 Language Specification. While JavaScript and JScript aim to be compatible with ECMAScript, they also provide additional features (and other deviations) not described in the ECMA specifications. Other implementations of ECMAScript also exist.

The differences today for those who use JavaScript are negligible; people generally do not distinguish the JavaScript and JScript variations from ECMAScript.

ECMAScript versions

Most modern browsers implement JavaScript based on the specification, although some fail to implement some ES6 features. However, older browsers such as Internet Explorer 8 implement the ECMAScript 3 specification, which does not contain functions such as Function.prototype.bind and even JSON.parse, amongst others.

The current version of ECMAScript is version 7 (), properly known as ECMAScript 2016, which was finalized in June 2016.


When asking a JavaScript question, you should:

  1. Debug your JavaScript code (see Creativebloq, MDN, Google, & MSDN).
  2. Isolate the problematic code and reproduce it in a Stackoverflow code snippet or an external online environment such as JSFiddle or JS Bin (remember to also include the code in the question itself).
  3. If a library or framework is used, then tag the question with the appropriate tags: for jQuery, for Prototype, for MooTools, and so on. However, if a framework is not used or necessary, do not include these tags.
  4. Mention which browser the code is having problems on, and what error messages, if any, were thrown by the browser (use the Developer Tools for your browser (see "Useful Tools" below) to see these messages). If the question is browser-specific, use tags , , , , , ,etc.
  5. Only tag the question as or if you are asking about an issue that concerns the combination of one of those with JavaScript and could only be answered with information specifically regarding either of those subjects.

Learning JavaScript

Security

JavaScript and the DOM provide the potential for malicious authors to deliver scripts to run on a client computer via the Web. Browser authors contain this risk using two restrictions. First, scripts run in a sandbox in which they can only perform Web-related actions, not general-purpose programming tasks like creating files. Second, scripts are constrained by the same origin policy: scripts from one Web site do not have access to information such as usernames, passwords, or cookies sent to another site. Most JavaScript-related security bugs are breaches of either the same origin policy or the sandbox.

Content Security Policy is the main intended method of ensuring that only trusted code is executed on a Web page.

Useful Tools

Interactive JavaScript learning

Wisdom from the Stack

Useful links

Free JavaScript Programming Books

Videos


Example JavaScript code

This script displays "Hello World" on your screen.

window.onload = function() {
   alert('Hello World!');
}

Demo!


Frequently Asked Questions

Find some answers to some of the more frequently asked questions about JavaScript and related technology below.

Q: I have this JSON structure, how can I access property x.y.z?
A: http://stackoverflow.com/q/11922383

Q: I'm adding events in a for loop but all handlers do the same thing, why?
A: http://stackoverflow.com/questions/750486/javascript-closure-inside-loops-simple-practical-example

Q: I want to compare something against multiple values, is there an easy way to do it?
A: http://stackoverflow.com/questions/13737091/concise-way-to-compare-against-multiple-values

Q: How to set up proper inheritance?
A: http://stackoverflow.com/questions/11072556/objects-dont-inherit-prototyped-functions/11072626

Q: How do JavaScript closures work?
A: http://stackoverflow.com/questions/111102/how-do-javascript-closures-work/

Q: Why does setTimeout() inside a for loop always use the latest value?
A: http://stackoverflow.com/questions/5226285

Q: How to return the response from an AJAX call from a function?
A: http://stackoverflow.com/questions/14220321

Q: Why don't my handlers hooked up in a loop work correctly, and what can I do about it?
A: http://stackoverflow.com/questions/16794707/javascript-generate-dynamically-handler/16794762#16794762

Q: How can I get query string values?
A: http://stackoverflow.com/questions/901115

Q: What does “use strict” do in JavaScript?
A: http://stackoverflow.com/questions/1335851/what-does-use-strict-do-in-javascript-and-what-is-the-reasoning-behind-it

Q: How can I make a redirect page in jQuery/JavaScript?
A: http://stackoverflow.com/questions/503093/how-can-i-make-a-redirect-page-in-jquery-javascript

Q: How to sort an array of objects by a property value?
A: http://stackoverflow.com/questions/1129216/sorting-objects-in-an-array-by-a-field-value-in-javascript

Q: I'm adding elements with JavaScript or jQuery at a later point and adding events but they're not firing, why?
A: You might want event delegation.

Q: How can I only keep items of an array that match a certain condition?
A: http://stackoverflow.com/questions/27131984/how-can-i-only-keep-items-of-an-array-that-match-a-certain-condition

Q: How can I debug my JavaScript code?
A: http://stackoverflow.com/questions/988363/how-can-i-debug-my-javascript-code

More information:

Chat Room

189 questions
2
votes
1 answer

Wildcard Domain with Google Analytics

Each user on our website has their own subdomain (e.g. bob.example.com, elephant.example.com) and they get paid for the traffic that they send to this subdomain. How can I wire up Google Analytics so that I can view statistics (views, countries,…
Mark Gladstone
  • 155
  • 1
  • 2
  • 6
2
votes
4 answers

How to avoid external Javascript problem hanging server?

I've been having a strange problem with externally linked Javascript libraries hanging my load balancer server running HAProxy. I recently integrated the Quantcast monitoring script, and it worked for about 12 hours, and the next morning I…
Aldie
  • 146
  • 4
2
votes
0 answers

Logon script does not run for all users

We have a standalone common-use workstation running Windows XP Pro SP3 and have created a script using Javascript (scriptname.js) that is to be run for each user. The file was added as a user logon script via gpedit.msc and tested using a newly…
Herohtar
  • 121
  • 4
2
votes
2 answers

Cannot log in to Deluge Web UI?

I've set up deluge using this short guide: http://dev.deluge-torrent.org/wiki/UserGuide/ThinClient#WebUI The deluge service IS running because I can navigate to my local server and see the log in box. However, when I enter the correct default…
n0pe
  • 363
  • 5
  • 13
2
votes
1 answer

IIS 7.5 Not Compressing Javascript: NO_MATCHING_CONTENT_TYPE

I have IIS 7.5 set to compress all static files (the default), yet it does not compress .js (javascript) files. When I turn on failed request tracing for compression, the error I get for the compression is: NO_MATCHING_CONTENT_TYPE I read about…
2
votes
2 answers

Is there a workaround for using the Virtual Server 2005 Administration Website with Internet Explorer 8?

Since upgrading to Internet Explorer 8 I've been getting JavaScript errors when performing certain functions (like "Turn On") on the Virtual Server 2005 Enterprise R2 SP1 Administration Website: Message: 'document.getElementById(...)' is null or not…
2
votes
3 answers

JavaScript and CSS fail to load in some browsers over SSL

I have a website on which we have recently enabled SSL. In most browsers, this works fine: our scripts and stylesheets are imported using HTTPS and most browsers load pages successfully. However, in some circumstances, secure pages will load without…
Shaun
  • 177
  • 1
  • 2
  • 9
2
votes
2 answers

What technologies allow bidirectional streaming of video?

Wikipedia says that Flash allows "bidirectional streaming of audio and video". Is it possible to do that with other technologies (for example with JavaScript)? In other words, I want to transfer video from one user of web-site to another one in real…
Roman
  • 2,569
  • 10
  • 32
  • 32
2
votes
1 answer

node.js ./configure warnings

I'm trying to install node.js and I get this list of warnings when I run ./configer. I don't know which libraries/packages I miss on my Debian installation (Linux 2.6.32.6 ppc GNU/Linux on a Bubba2 sever) Checking for gnutls >= 2.5.0 :…
microspino
  • 434
  • 1
  • 4
  • 11
2
votes
6 answers

What's the common cause for trojan downloaders on linux servers?

On several of the webservers i'm responsible for there's a javascript virus, a trojan downloader according to the antivirus i'm using. It's a minified javascript that's on the bottom of every page requested from the server. I don't know what the…
2
votes
1 answer

Why must the XHR status be set before echoes in PHP?

Perhaps this question belongs on Stack Overflow or another site instead, in which case please tell me and don't just downvote; I will gladly move it. Anyway, I'm just learning the very basics of server management and I was playing around with my own…
Guy
  • 123
  • 5
1
vote
0 answers

How to add Google TPU to javascript coded web application at AWS?

Edit; I think I just realized that what they are selling is not an add on item to your existing web application, but that they want you to use their servers(instead of AWS), and are implying that server errors to lower end devices(from javascript…
Nidi.work
  • 11
  • 2
1
vote
1 answer

Why is upload way faster and more alternating in speed than download on local machine

I am writing a speed test to determine browser-server connection speed (js+php but I don't think it matters). I send a bunch of data-packages in different sizes and measure the time they need to reach the server (upload) respectively the client…
Paflow
  • 173
  • 1
  • 1
  • 7
1
vote
3 answers

Getting live traffic/visitor analytics when using a reverse proxy

I'm in process of implementing Varnish as a reverse proxy for a Ruby on Rails app and I'm using Google Analytics (JS/client side script to record visitor data) but it's several hours delayed so its useless for knowing what's going on now. I need at…
user29608
  • 11
  • 1
  • 2
1
vote
1 answer

nginx set different document root for a proxypass

I'm just trying to run a nodejs app I made on a proxypass domain, and have it work exactly as it did on my desktop. However, for some reason, even though I defined a seperate document root for this proxypass path, it didn't load the files from it.…
Jake t
  • 127
  • 2
  • 8
1 2
3
12 13