Tagged Questions
133
votes
13answers
46k views
When is a CDATA section necessary within a script tag?
Are CDATA tags ever necessary in script tags and if so when?
In other words, when and where is this:
<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>
...
97
votes
8answers
6k views
Why does 2 == [2] in JavaScript?
I recently discovered that 2 == [2] in JavaScript. As it turns out, this quirk has a couple of interesting consequences:
var a = [0, 1, 2, 3];
a[[2]] === a[2]; // this is true
Similarly, the ...
88
votes
4answers
7k views
How to decide when to use NodeJS?
I am a n00b in this kind of stuff but lately I've been hearing a lot about how good NodeJS is. Considering how much I love working with jQuery and Javascript in general, I can't help but wonder how to ...
88
votes
9answers
6k views
What questions should a JavaScript programmer be able to answer?
Suppose a company is going to hire JavaScript coders. I wonder what question should this company use to properly evaluate them. Even though general programming skills are more important than ...
88
votes
13answers
26k views
SVG vs CANVAS, where is the Web World going towards?
I need to pick one of two technologies (svg, canvas) for an ongoing project of mine. I would prefer to pick the technology that is more maintained and in active development rather then choose a ...
64
votes
5answers
145k views
jQuery get textarea text
Recently I have started playing with jQuery, and have been following a couple of tutorials. Now I feel slightly competent with using it (it's pretty easy), and I thought it would be cool if I were ...
60
votes
7answers
6k views
Has anyone used Coffeescript for a production application? [closed]
Coffeescript looks pretty cool. Has anyone used it? What are its Pros & Cons?
53
votes
11answers
33k views
How do I send a cross-domain POST request via JavaScript?
How do I send a cross-domain POST request via JavaScript?
Notes - it shouldn't refresh the page, and I need to grab and parse the response afterward.
Your help with some code examples will be much ...
52
votes
5answers
1k views
Does it still make sense to use HTML comments on blocks of JavaScript?
In the past people used to wrap HTML comment tags around blocks of JavaScript in order to prevent "older" browsers from displaying the script. Even Lynx is smart enough to ignore JavaScript, so why do ...
49
votes
16answers
60k views
In JavaScript can I make a “click” event fire programmatically for a file input element?
I'd like to make a click event fire on an <input type="file"> tag programmatically.
Just calling click() doesn't seem to do anything or at least it doesn't pop up a file selection dialog.
I've ...
44
votes
10answers
103k views
How to get image size (height & width) using javascript?
Is there any javascript or jquery apis or methods to get the dimensions of an image on the page?
40
votes
7answers
10k views
Will HTML5 allow web apps to make peer-to-peer HTTP connections?
This is probably a dumb question, but I have to ask it anyway. I'd like to know if it is at all possible to create a web app that, with the help of a central server, could create direct connections ...
40
votes
6answers
8k views
Is there any good Markdown Javascript library or control?
I want to build a site where the user can enter text and format it in Markdown. The reason I'd like a Javascript solution is because I want to display a live preview, just like on StackOverflow.
My ...
37
votes
8answers
28k views
'innerText' works in IE, but not in Firefox
I have some JavaScript code that works in IE containing the following:
myElement.innerText = "foo";
However, it seems that the 'innerText' property does not work in Firefox. Is there some Firefox ...
37
votes
4answers
10k views
Difference between a Postback and a Callback
I keep on hearing this words 'callback' and 'postback' tossed around.
What is the difference between two ?
Is postback very specific to the ASP.NET pages ?
36
votes
11answers
12k views
What's the best Javascript tutorial?
Can anyone please direct me to the best Javascript tutorials? Site links, books or video tutorials perhaps?
33
votes
6answers
5k views
Load and execution sequence of a web page?
I did some web based projects. But I don't think too much about the load and execution sequence of an ordinary web page. But now I need to know detail. It's hard to find the result from Google or SO. ...
30
votes
25answers
2k views
Is it reasonable to assume my visitors have javascript enabled?
I understand that server-side validation is an absolute must to prevent malicious users (or simply users who choose to disable javascript) from bypassing client-side validation. But that's mainly to ...
29
votes
4answers
13k views
Best way to detect when user leaves a web page
What is the best way to detect if a user leaves a web page?
The onUnload javascript method doesn't work every time (the HTTP request takes longer than the time required to terminate the browser).
...
28
votes
11answers
24k views
Why use definition lists (DL,DD,DT) tags for HTML forms instead of tables?
I've come across a few examples recently that do things like:
<dl>
<dt>Full Name:</dt>
<dd><input type="text" name="fullname"></dd>
<dt>Email ...
28
votes
10answers
29k views
Turn off caching for JavaScript files on Firefox
During development I have to "clear cache" in Firefox all the time in order to make it use the latest version of JavaScript files.
Is there some kind of setting (about:config) to turn off caching ...
26
votes
5answers
983 views
How can you flip website upside down in IE ? (for the April 1st)
We are making April 1st prank in our office, and wanted to flip our corporate website upside down for several hours tomorrow :)
My patch works everywhere but not in IE... Can anyone help ?
...
25
votes
6answers
9k views
jQuery CSS plugin that returns computed style of element to pseudo clone that element?
I'm looking for a way using jQuery to return an object of computed styles for the 1st matched element. I could then pass this object to another call of jQuery's css method.
For example, with width, I ...
24
votes
10answers
3k views
Best book to learn web development for a professional developer? [closed]
I'm a professional software developer. I've been programming in a lot of different languages over the course of more than two decades now. Picking up a new programming language is very easy for me.
...
23
votes
10answers
6k views
What's the best way to open new browser window?
I know that most links should be left up to the end-user to decide how to open, but we can't deny that there are times you almost 'have to' force into a new window (for example to maintain data in a ...
23
votes
10answers
3k views
Is there a html opposite to noscript
Is there a tag in html that will only display its content if JavaScript is enabled? I know noscript works the opposite way around, displaying its html content when JavaScript is turned off. but I ...
22
votes
11answers
2k views
Is JavaScript validation bad?
It has been long time since we have been validating our forms using JavaScript. I am sure this must be the case with most other developers.
Question:
What if the user (or probably a bad guy) ...
22
votes
10answers
8k views
JavaScript: min & max Array values?
How can I easily obtain the min and max values from a JavaScript Array?
Example code:
var arr = new Array();
arr[0] = 100;
arr[1] = 0;
arr[2] = 50;
// something like (but it doesn't have to be)
...
22
votes
5answers
4k views
Ajax, back button and DOM updates
If javascript modifies DOM in page A, user navigates to page B and then hits back button to get back to the page A. All modifications to DOM of page A are lost and user is presented with version that ...
21
votes
2answers
755 views
Using CoffeeScript in a production environment [closed]
I really like using CoffeeScript (1.1.1) for small projects and it worked out great so far. However before using it in a more broad environment I would like to hear second opinions on using it in ...
21
votes
6answers
817 views
In 2011 is it truly necessary to still degrade js? [closed]
Serious question.
I tried most of the famous websites (including facebook) and I can say that tons of functionality doesn't degrade at all with js disabled. I've been always told that js should ...
20
votes
1answer
14k views
How to get browser to navigate to URL in Javascript?
What is the best (correct, modern, cross-browser, safe) way to get a web browser to navigate to a URL of your choice using Javascript?
20
votes
4answers
65k views
jQuery DIV click, with anchors
To make click-able divs, I do:
<div class="clickable" url="http://google.com">
blah blah
</div>
and then
$("div.clickable").click(
function()
{
window.location = ...
19
votes
6answers
842 views
Online Code Coloring Service
I would like to know if anyone knows of an online service where we paste the code and it generates back the colored html source code for that code. It could be PHP, HTML, CSS, Javascript, C, Java.
...
19
votes
6answers
19k views
How do I stop a page from unloading (navigating away) in JS?
Does anyone know how to stop a page from reloading or navigating away?
jQuery(function($) {
/* global on unload notification */
warning = true;
if(warning) {
...
19
votes
9answers
12k views
How to prevent ENTER keypress to submit a web form?
I just want to know how to prevent an ENTER key press from submit a form in a web-based application. I need a detailed answer.
19
votes
19answers
7k views
Web Development IDE Suggestions [closed]
I'm looking for suggestions for web development IDEs. I'm currently looking at Aptana Studio and it looks rather impressive so far. Anyone have other suggestions?
I'm looking for support for HTML, ...
18
votes
9answers
8k views
Image resize before upload
I need to provide a means for a user to upload photos to their web site in jpeg format. However, the photos are very large in original size, and I would like to make the resize before upload option ...
17
votes
4answers
805 views
Why serve 1x1 pixel GIF (web bugs) data at all?
Many analytic and tracking tools are requesting 1x1 GIF image (web bug, invisible for the user) for cross-domain event storing/processing.
Why to serve this GIF image at all? Wouldn't it be more ...
17
votes
9answers
377 views
Features of JavaScript that C developers fail to take advantage of?
Fellow Stackers,
In the first Computer Science class I took, the professor used C++ as a teaching language. He emphasized that the important things to understand are the concepts of programming, not ...
17
votes
4answers
13k views
Google Maps: How to create a custom InfoWindow?
I just came across http://fwix.com/
I really like how they create the InfoWindow (popup) when you click on a map marker because the corners on their InfoWindow are not as round as the default ...
17
votes
4answers
5k views
Why GWT? Advantages and Trade-Offs of Using This RIA Framework
I'm new to stackoverflow and have been reading through a bunch of the "highest voted" questions for GWT. Several of these questions talk about the pitfalls or problems with GWT. In the articles: ...
17
votes
12answers
3k views
Should I learn Silverlight or JavaScript/JQuery/CSS/HTML?
I'm a seasoned desktop developer working in C++/C#/WinForms/etc. Up until this point, I have done very little in terms of web development. I've come to the point in my career where I feel like I ...
17
votes
12answers
1k views
Is it worth it to code different functionality for users with javascript disabled?
I'm currently building a project and I would like to make use of some simple javascript - I know some people have it disabled to prevent XSS and other things. Should I...
a) Use the simple ...
17
votes
7answers
4k views
Is there a good in-browser code editor?
We've all seen in-browser rich text editors, which allow you to edit colored/styled text in a WYSIWYG manner. But what about code editors, which automatically highlight code based on language rules as ...
16
votes
15answers
654 views
Is Javascript only available for web browsers?
I would like to know about JavaScipt. Is Javascript available only for web browsers? Because I used some JavaScript code for Firefox Plugin development and Thunderbird.
Help me to find out more about ...
16
votes
9answers
7k views
What is the best alternative for jQuery thickbox [closed]
As jQuery thickbox is not maintained anymore (as of ThickBox 3.1), what is the best alternative for jQuery thickbox currently available under GPL or similar license. Looks nyromodal is best available ...
16
votes
6answers
18k views
Is it possible to trigger a link's (or any element's) click event through JavaScript?
I'm writing some JavaScript code that needs to fire the click event for a link. In Internet Explorer I can do this
var button = document.getElementById('myButton');
button.click();
But this ...
15
votes
7answers
2k views
Recommendations for an experienced programmer new to JavaScript?
I come from a C/Unix background, with a lot of experience in shell scripting, and some on Perl, elisp, etc. too. But now I'm getting into some work where I'll need to be developing interactive ...
15
votes
12answers
375 views
What are the common mistakes to avoid when coding javascript for Internet Explorer?
I'm about to start coding a new, javascript-heavy website, but before I start I'd like to minimize my debugging time in Internet Explorer by knowing beforehand what the quirks are. I'm not planning to ...