Tagged Questions
JavaScript is a dialect of ECMAScript. Use this tag for questions regarding common implementations of ECMAScript, JavaScript, JScript, etc.
about the javascript tag | top users | new answers | synonyms
0
votes
0answers
29 views
How to port an Apple Dashboard widget to Windows?
I made visual aid type of widget (user needs to see through it) with Dashcode, now I want to port it to Windows XP & 7.
I heard that StarDock DesktopX Pro can export standalone widgets as .exe …
5
votes
8answers
321 views
What does Google or Microsoft get by hosting JS files on their Content Delivery Networks (CDN)?
As you know Google, Microsoft and jQuery.com offer JS files on their CDN. To do this, they must need to operate significant servers which must come at a cost to them. Why do they do this and what do …
2
votes
1answer
63 views
Using Backbone.js with ASP.Net MVC
I'm currently looking into the advantages of using Backbone.js, but I'll be using ASP.Net MVC as the main bulk of the site. My question is, is it worth blending the 2 together or am I making a rod …
0
votes
0answers
8 views
Nested gridview to produce treeview effect with asynchronous binding of child grid in asp.net/C#/AJAX [migrated]
Essentially, I am attempting to create a treeview effect via nested gridviews. It'll look something like this:
-col 1 col 2 col 3 col 4
childcol1 childcol2 childcol3
childcol1 childcol2 …
2
votes
3answers
557 views
Measures of Javascript engine performances over time?
Since the beginning of the Javascript race -- which I would situate around Google Chrome launch in 2008 -- the improvement in the Javascript engine performances have been impressive.
The web is …
-1
votes
2answers
99 views
Which snippet is more easily understood? [closed]
I have two snippets that are going to be used in a walkthrough and I'd like some feedback on which one is more easily understandable
1)
property int hours, minutes, seconds
property real …
0
votes
1answer
53 views
How do I trap a redirect from javascript? [closed]
I have this odd bug that causes a 302 redirect to another page on my site and I can't seem to track the source. The bug is very random and hard to track.
I have 2 or more dropdowns on a page for …
0
votes
0answers
12 views
syntax highlighter for blogger blog [migrated]
I want to put some code in my blog.. so surfed net and got to
http://alexgorbatchev.com/. I read some people tutorials on it and how to use it but I couldn't able to use it..
I did the exact process …
3
votes
3answers
85 views
jQuery - programming style - many bindings vs. conditional single one
I frequently see code like that:
$("#foo").live("mouseover mouseout", function(e) {
if (e.type == "mouseover") {
$("#foo").append("<div id='bar'>");
} else {
…
3
votes
2answers
91 views
Best JavaScript Coding Structure Using Object Literal?
Object Literal has no doubt been established in recent years as one of the essential components to best JavaScript coding practices. However, I am not very sure about what is the best way to structure …
35
votes
13answers
8k views
How does Python's handling of line-breaks differ from JavaScript's automatic semicolons?
Javascript has a feature called Automatic Semicolon Insertion where basically if the parser encounters an invalid token, and the last token before that was a line break, then the parser will insert a …
-1
votes
5answers
117 views
What can I do with HTML/CSS/JavaScript? [closed]
I watched a bunch of tutorials on YouTube and browsed through several online guides for HTML/CSS/JavaScript, so I'm familiar with the syntax. But I'm tired of reading. I know that you can create some …
5
votes
3answers
253 views
Why do we need different JS for different browsers
What exactly are different things we need to take care when writing different JS files, like arrays, variables etc., Is there a book or website explaining differences between different JS engines used …
0
votes
2answers
103 views
Alternatives to Java Applet for interactive Websites
In short I am searching for an alternative to Java applets for making some interactive parts like minigames etc. on my website
Facts:
I´m developing an e-learning website for children.
This site has …
0
votes
1answer
139 views
Contentious Douglas Crockford JavaScript claims [closed]
I've started programming with JavaScript a few weeks ago. My first book is Douglas Crockford's "JavaScript: The Good Parts". I've been a good student, closely doing as he says; I even use his strict …