tagged [javascript]

JavaScript equivalent of PHP’s die

JavaScript equivalent of PHP’s die Is there something like "die" in JavaScript? I've tried with "break", but doesn't work :)

1 Sep at 09:18

Calling iframe function

Calling iframe function Is there a way to call a JavaScript function that is inside an IFrame from the parent?

22 Jun at 13:54

JavaScript alert box with timer

JavaScript alert box with timer I want to display the alert box but for a certain interval. Is it possible in JavaScript?

26 Dec at 08:1

How to globally replace a forward slash in a JavaScript string?

How to globally replace a forward slash in a JavaScript string? How to globally replace a forward slash in a JavaScript string?

8 Feb at 23:48

How to get datetime in JavaScript?

How to get datetime in JavaScript? How to get date time in JavaScript with format 31/12/2010 03:55 AM?

23 Jul at 14:57

How can I make an AJAX call without jQuery?

How can I make an AJAX call without jQuery? How can I make an AJAX call using JavaScript, without using jQuery?

20 Oct at 03:18

Looking for a simple JavaScript example that updates DOM

Looking for a simple JavaScript example that updates DOM I am looking for a simple JavaScript example that updates DOM. Any suggestions?

2 Dec at 13:7

Auto start print html page using javascript

Auto start print html page using javascript Is there anyway to automatically run `javascript:window.print()` when the page finishes loading?

12 May at 08:59

Is there an equivalent for var_dump (PHP) in Javascript?

Is there an equivalent for var_dump (PHP) in Javascript? We need to see what methods/fields an object has in Javascript.

27 Nov at 11:29

Abort Ajax requests using jQuery

Abort Ajax requests using jQuery Is it possible that using jQuery, I that I have not yet received the response from?

8 Jul at 00:24

What is the JavaScript equivalent of C# Server.URLEncode?

What is the JavaScript equivalent of C# Server.URLEncode? What is the JavaScript equivalent of C# Server.URLEncode?

29 Jun at 17:0

Parse DateTime string in JavaScript

Parse DateTime string in JavaScript Does anyone know how to parse date string in required format `dd.mm.yyyy`?

What is the fastest factorial function in JavaScript?

What is the fastest factorial function in JavaScript? Looking for a really fast implementation of the function in JavaScript. Any suggestions?

2 May at 00:55

Convert Array to Object

Convert Array to Object What is the best way to convert: to:

10 Mar at 14:18

Check element CSS display with JavaScript

Check element CSS display with JavaScript Is it possible to check if an element's CSS `display == block` or `none` using JavaScript?

19 Nov at 13:0

What is the opposite of evt.preventDefault();

What is the opposite of evt.preventDefault(); Once I've fired an `evt.preventDefault()`, how can I resume default actions again?

31 Oct at 13:1

Calling JavaScript Function From CodeBehind

Calling JavaScript Function From CodeBehind Can someone provide good examples of calling a JavaScript function From CodeBehind and Vice-versa?

13 Feb at 21:44

What is the (function() { } )() construct in JavaScript?

What is the (function() { } )() construct in JavaScript? I would like to know what this means: Is this basically saying `document.onload`?

4 Jul at 12:8

HTML5 check if audio is playing?

HTML5 check if audio is playing? What's the javascript api for checking if an html5 audio element is currently playing?

24 Feb at 20:0

componentDidMount equivalent on a React function/Hooks component?

componentDidMount equivalent on a React function/Hooks component? Are there ways to simulate `componentDidMount` in React functional components via hooks?

12 Dec at 10:55

How to sum the values of a JavaScript object?

How to sum the values of a JavaScript object? I'd like to sum the values of an object. I'm used to python where it would just be: The following code works, but it's a lot of code: ``` function obj_val...

19 Aug at 19:13

Learning JavaScript for a total non-programmer

Learning JavaScript for a total non-programmer I code CSS/XHTML like it should be my mother language, and I do write valid, semantic code following guidelines of accessibility and such. But I want to ...

20 Jun at 09:12

Is there a jQuery unfocus method?

Is there a jQuery unfocus method? How can I unfocus a textarea or input? I couldn't find a `$('#my-textarea').unfocus();` method?

9 Aug at 15:20

Is there any way to call a function periodically in JavaScript?

Is there any way to call a function periodically in JavaScript? Is there any way to call a function periodically in JavaScript?

1 Oct at 06:45

What is DOM Event delegation?

What is DOM Event delegation? Can anyone please explain event delegation in JavaScript and how is it useful?