32
votes
Hidden Features of JavaScript?
Assigning default values to variables
You can use the logical or operator …
1
vote
Javascript and why capital letters sometimes work and sometimes don’t.
JavaScript API methods are almost all called with lowerCamelCase names, and JavaScript is case-sensitive
…
0
votes
How best to make the selected date of an ASP.Net Calendar control available to javascript?
You might find useful the MS AJAX Calendar control extender, you can get the date just by …
0
votes
Javascript drawing library?
Checkout the jQuery Drawing plugin, and you can also look at the Mozilla …
1
vote
What’s a good book to learn Javascript DOM manipulation?
I like Practical JavaScript, DOM, and Ajax Projects
…
0
votes
Is JavaScript object-oriented?
JavaScript is a very good language to write object oriented web apps. It can support OOP because supports inheritance through prototyping also properties and methods. You can have polymorphism, enc …
2
votes
Javascript memory profiler for Firefox
I think JavaScript Memory Validator from Software Verification Limited can help you, it has allocations vie …
2
votes
What does it mean that Javascript is a prototype based language?
Prototype-based programming is a style of object-oriented programming where classes are not present, and behavior reuse (or inheritance in class-based languages) is performed by cloning existing ob …
12
votes
1
vote
How can I upload files without using an HTML <form>?
With jQuery.post you will be only able to send key/value pairs to the server in a POST Request, However you can use plugins like …
3
votes
6
votes
Javascript fake dictionarys
You can do it in different ways:
var a = {'a':0, 'b':1, 'c':2};
var b = new Array();
b['a'] = 0;
b['b'] = 1;
b['c'] = 2;
var c = new Object();
c.a = 0;
c.b = 1;
c.c = 2;
…
8
votes
How do I debug javascript in visual studio when an asp.net application is run under firefox?
At the moment, there is no Firefox extension that allows you to debug JavaScript directly in Visual Studio.
Visual Studio 2008 came with a very nice …
2
votes
Best JavaScript Date Parser & Formatter?
Take a look to this very good article: JavaScript date formatting benchmarks
…
3
votes
What is the best multiple file JavaScript / Flash file uploader?
Alternatives to SWFUpload:
YUI Uploader
…
