JavaScript (not to be confused with Java) is a high-level, dynamic, multi-paradigm, weakly-typed language used for both client-side and server-side scripting. Its primary use is in rendering and allowing manipulation of web pages. Use this tag for questions regarding ECMAScript and its various dialects/implementations (excluding ActionScript and Google-Apps-Script).
I have two radio buttons and want to post the value of the selected one. How can I get the value with jQuery?
Is there a better way to engineer a sleep in JavaScript than the following pausecomp function (taken from here
How can I check the existence of an element in jQuery? The current code that I have is this: if ($(selector)
What I am looking for: A way to style one HALF of a character. (In this case, half the letter being transpare
Can I convert a string representing a boolean value (e.g., 'true', 'false') into a intrins
I have the following code in Ruby. I want to convert this code into JavaScript. What is the equivalent code in
var funcs = []; // let's create 3 functions for (var i = 0; i < 3; i++) { // and store them in f
What's the best way of checking if an object property in JavaScript is undefined?
I would like to upload a file asynchronously with jQuery. $(document).ready(function () { $("#uploa
How can I change the class of an HTML element in response to an onclick or any other events using JavaScript?
I'm trying to write a function that either accepts a list of strings, or a single string. If it's a
When I want to prevent other event handlers from executing after a certain event is fired, I can use one of tw
I have a JavaScript object like the following: var p = { "p1": "value1", "p2": "value2", "p3": "v
What is the difference between using call and apply to invoke a function? var func = function() { alert(&ap
All I want is to get the website URL. Not the URL as taken from a link. On the page loading I need to be able
I'd like to round at most 2 decimal places, but only if necessary. Input: 10 1.7777777 9.1 Output: 1
I saw this question, but I didn't see a JavaScript specific example. Is there a simple string.Empty avail
I have an array of JavaScript objects: var objs = [ { first_nom: 'Lazslo', last_nom: 'Jam
I have an object x. I'd like to copy it as object y, such that changes to y do not modify x. I realized t