Tagged Questions
0
votes
1answer
55 views
What are some examples of Dynamically loaded content changed by onClick events with images? [closed]
So, I'm struggling to articulate the nature of what I'm looking for concisely. I feel certain I've seen it done, but essentially I'm looking for a set-up or example by which one has a series of images ...
1
vote
1answer
210 views
Coding Better Object-Oriented JavaScript with Closure Compiler full example code
I like the ideas presented by Hedger Wang in his post "Coding Better Object-Oriented JavaScript with Closure Compiler" ...
3
votes
3answers
913 views
Javascript Sandbox Pattern example implementation
On Page 101 of Stoyan Stefanov's great book "JavaScript Patterns" he explains the sandbox pattern.
I liked his book much but I really missed some real life examples here and then to better understand ...
5
votes
2answers
1k views
What are some big web apps that use Dojo Toolkit?
I'm looking for some big web apps/sites that use Dojo Toolkit.
There are tons of web apps/site that use backbone.js/jQuery but I had no luck to find some powered by Dojo.
By big I mean somehow ...
2
votes
1answer
1k views
Google spreadsheet API Javascript
I want to use javascript to access/edit my google spreadsheets. Google provides API here http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html. But I don't know how these code ...
0
votes
1answer
415 views
can you show me some example for the Keymap.js,(The Definitive Guide)?
function Keymap(bindings) {
this.map = {}; // Define the key identifier->handler map
if (bindings) { // Copy initial bindings into it
for(name in bindings) this.bind(name, ...
0
votes
1answer
1k views
Highcharts Example Modification
Below is a link to the Highcharts example I want to modify. I would like to have the right 2 y-Axes become one. Currently, each line on the graph corresponds with one y-Axis because they have ...
1
vote
2answers
8k views
Examples using Lungo.JS
is there any example on using Lungo.JS?
I'm trying to start developing a WebApp for mobile content... and i've found this on http://www.lungojs.com/ , but here is no example on it.
Thanks in advance
...
0
votes
1answer
149 views
What's a good example of a JS client to a REST interface or a good tutorial on the topic? [closed]
I've done some redesign of my application's HTTP interface and want to move my client from Flash/Actionscript to Javascript and HTML 5. I've done some minor JS programming before and I think I get the ...
2
votes
2answers
371 views
Explanation on “JavaScript - the Good Parts” example (section 4.15)?
Beginner in JS :) needs an explanation of code piece from Crockford's book, section 4.15:
var memoizer = function (memo, fundamental) {
var shell = function (n) {
var result = memo[n];
...
0
votes
1answer
890 views
Example Code for Cisco Digital Media Player or TVzilla
I have a Cisco Digital Media Player and I need to create a web page using the DMP (Digital Media Player) Javascript Libraries, the problem is I don't know anything about them. I have lots of ...
5
votes
1answer
483 views
Example from: “Javascript - The Good Parts”
What "ugliness" does the following solve? There's something I'm not getting, and I'd appreciate help understanding what it is.
For example, by augmenting Function.prototype, we can make a method ...
9
votes
4answers
1k views
What is a good example for functional style web programming using javascript?
I'm doing javascript on a daily basis at the moment. I'm coming from an OO background and most of the code I have contact with is somewhat procedural/OO style. I'm looking for good examples that ...