A JavaScript framework is a library of pre-written JavaScript which allows for easier development of JavaScript-based applications, especially for AJAX and other web-centric technologies.
32
votes
4answers
14k views
Good jQuery Mobile walkthrough or tutorial for a jquery developer?
jQuery Mobile 1.0 final is out
Important: Many of the tutorials are old and should not be followed. The current version of jQuery Mobile is 1.0! Please be careful while looking through the links
I ...
31
votes
4answers
6k views
Pros and cons of using JavascriptMVC?
For the last year I have been developing a lot in javaScript using jQuery an ketchup. What I was lacking on was structuring and testing. So I went out googling and found javascriptmvc. This framework ...
17
votes
3answers
677 views
Accessibility and all these JavaScript frameworks
I've been investigating a few of the JavaScript frameworks such as Backbone.js and Batman.js for a while and whilst I really like them, I have one niggling thing that I keep coming back to. That issue ...
13
votes
5answers
7k views
How to create a jQuery plugin with methods?
I'm trying to write a jQuery plugin that will provide additional functions/methods to the object that calls it. All the tutorials I read online (have been browsing for the past 2 hours) include, at ...
12
votes
6answers
165 views
If you're already using a framework, should you never write “plain vanilla” js?
This is more of a question of style and preference than anything, though it's possible that there might be performance considerations as well.
If you're using a framework (say jQuery for the sake of ...
12
votes
6answers
2k views
What are your tips for best practice for web application structure?
I do a lot of custom applications at work. I'm trying to define some standards for new applications. Something a little like Elements.
CSS: How do you organize the style sheets? Should I have one ...
10
votes
2answers
294 views
Which JavaScript-framework can search CSS stylesheet rules and edit their properties?
The Question
Which JavaScript framework (prototype, script.aculo.us, Mootools, MochiKit...) has decent CSS rule editing support?
This is about changing a style rule. I want to have a dynamic CSS ...
10
votes
5answers
149 views
What sorts of javascript/jquery methods do you routinely code into your sites?
I'm coding a core javascript object for my site, building in the common methods I use (and wrapping a few jQuery methods as well).
It's built like this:
var Core = {
baseUrl: '/',
lang: 'en-us',
...
9
votes
3answers
2k views
jQuery, Web Application Framework?
For the longest time I've used jQuery to hack together web sites. Now I'm interested in making a web application (one page load for the entire site to function, like Gmail).
Are there any jQuery ...
9
votes
2answers
342 views
How do get WMD-Editor to post Markdown to the server and not HTML?
it seem that WMD-Editor is posting HTML to the server instead of the markdown? How can i get it to send the Markdown?
8
votes
3answers
1k views
Coffeescript — How to create a self-initiating anonymous function?
How to write this in coffeescript?
f = (function(){
// something
})();
Thanks for any tips :)
8
votes
4answers
2k views
Dojo vs YUI javascript framework
I want to know what you guys think of these 2 frameworks, in terms of:
robustness,
code quality,
core developers moving forward with new features,
cross browser problems,
module components,
...
8
votes
8answers
933 views
shall I move from prototype to jquery?
Lastly I've been feeling like jQuery is slowly becoming the defacto standard in JS libraries (I might be wrong!), or at least that is more active than the rest of the frameworks.
For example, I've ...
8
votes
7answers
622 views
Downscaled versions of jQuery or Prototype - JS framework selection
While considering the JS framework for my next project, I can see the scale clearly tipping towards jQuery, however, Prototype is getting good reviews, too.
The issue I am thinking of is how to ...
7
votes
4answers
336 views
Help learning from pivotaltracker's javascript, looking for a high level breakdown
My javascript skills are fairly basic, I can work with jquery etc. but when it comes to building a site like pivotaltracker I wouldn't know where to begin!
Was hoping someone could help break down ...
7
votes
1answer
140 views
When function returns result and when function in JavaScript
I see a lot that function returns NOT the result but the function.
The example below shows that function getWindow returns function. Why it can't just return variable "win"? When I return result and ...
7
votes
4answers
235 views
Is there a javascript library that contains a rich set of very high level commonly used functions?
I find that many high level functions are missing in most well-known javascript libraries such as jquery, YUI...etc. Taking string manipulation as an example, startsWith, endsWith, contains, lTrim, ...
7
votes
9answers
872 views
Which JavaScript Library Has the Most Comprehensive Class Inheritance Support?
After playing with a dozen different JavaScript Libraries such as Prototype, jQuery, YUI, just to name a few, I found every different library has a different way of simulating some sort of Class ...
6
votes
2answers
1k views
Frustrations with deciding on the right iOS Mobile Safari web development tools (jQuery Mobile/Sencha Touch/etc)
After completing one project with Backbone JS and jQuery Mobile for the iPad Mobile Safari, it left me feeling that jQuery Mobile is maybe not the right tool for that particular job.
I have found the ...
6
votes
6answers
6k views
Suggestions for a JavaScript form builder?
I'm looking to integrate a form builder into a site I'm using, but I'm hoping to find a library that has some or most of the functionality I'm looking for.
I'm looking for a library that will give me ...
5
votes
2answers
588 views
JavaScript visualization application - code organization, backbone mvc, desktop version etc
I'm setting out to develop a JavaScript web application for visualization, featuring bookmarking of various graphs with annotations etc.
A typical example would be: Given a url state, show two SVG ...
5
votes
3answers
238 views
Passed in undefined argument in jQuery core source code
I noticed that in the jQuery core, one of the two arguments passed in is undefined.
(function( window, undefined ) {
// Use the correct document accordingly with window argument (sandbox)
...
5
votes
5answers
151 views
Generating/selecting non-standard HTML tags with jQuery, a good idea?
I've noticed that jQuery can create, and access non-existent/non-standard HTML tags. For example,
$('body').append('<fake></fake>').html('blah');
var foo = $('fake').html(); // foo === ...
5
votes
3answers
266 views
What is the danger in including the same JavaScript library twice?
One of the webapps I'm working in is made up of many partial HTML files. If the partial requires a JavaScript library such as YUI, the YUI library is included in the partial.
When the partials are ...
5
votes
2answers
1k views
javascript framework for relationship visualization [closed]
Possible Duplicate:
Graph visualization code in javascript?
I need to create a dynamic visualization for nodes and their relationships in Javascript. What's the best framework to use? ...
5
votes
2answers
1k views
jqtouch / google maps api v3 issue
I'm having a hard time trying to make jQtouch and Google Maps api V3 together. I've tried almost everything. It seems that the only source of information is here I checked every single post. I'm ...
4
votes
2answers
94 views
Backbone code produces unusable stack traces
Im working with a relatively large backbone codebase, and it seems like whenever I get a javascript error, no matter what it is. The stacktrace that appears in the console looks identical (example ...
4
votes
3answers
94 views
unit testing modular javascript
I am currently deriving a javascript framework pattern as an architecture for the client side development for an upcoming large scale application that I will developing.
I am looking to go with a ...
4
votes
3answers
500 views
Backbone model.destroy() invoking error callback function even when it works fine?
I have a Backbone.js model that I'm trying to destroy when the user clicks a link in the model's view. The view is something like this (pseudocode because it's implemented in CoffeeScript which can be ...
4
votes
5answers
114 views
Tips for an intermediate javascript programmer to write better code
So I'm a fairly decent javascript programmer and I've just recently finished working on a fairly big web application that involved writing quite a bit of javascript. One of the things I can across ...
4
votes
4answers
72 views
Do you know a way to protect the JS code and make it visible only if requested by the remote?
Theoretically JS runs in the browser, then after the first download can be easily copied and made to run directly from the local, without going through the remote server. Because I need to sell an ...
4
votes
1answer
558 views
How to build this web app with Backbone.js?
I'm struggling to get my head around collections, models etc. in Backbone.
Let's say the app consists of a Sidebar, a Timeslider and a Column chart:
To provide some background, I've previously ...
4
votes
4answers
118 views
What's the difference between 2 JavaScript objects?
I try do improve my JavaScript skills.
I don't understand why (5) works and (2) returns error. Isn't the same?
B.fn() //OK
B.fn2() //TypeError: Object # has no method 'fn2'
var a = ...
4
votes
1answer
1k views
ExtJS toolbar not rendering correctly
I have a window where I'd like to add a toolbar at the top, and a panel for loading content in the remaining area. Unfortunately, the toolbar expands to a disproportionate size when I add the content ...
4
votes
6answers
280 views
Namespacing a javascript library, as optional
I'm about to start building a JS library that will have multiple modules. Let's suppose the library is called Library, and two modules will be called One and Two. I'd like for end users to be able ...
4
votes
1answer
361 views
JavaScript based iPhone UI framework
We have a push based web-application. Recently, we planned to make an iPhone app for it. Much like Facebook has it's iPhone application as well as web presence. We are looking for a UI framework that ...
4
votes
2answers
2k views
Real Time data graph
I would like to build a web-based real time data graph and i'm looking at the different options such as:
Html5 canvas
JS libraries with graph support such
as Extjs
Can you please recommend any ?
...
4
votes
3answers
1k views
Project ideas to master JavaScript
This question is the following of my other question here: http://stackoverflow.com/questions/3707746/cannot-understand-node-js
I decided to learn JavaScript, however and in spite of I learn by doing, ...
4
votes
8answers
261 views
“Thin” JavaScript framework for cross-browser scripting?
Is there a JavaScript framework that focuses on extending JavaScript by levelling the implementation differences? I don't mean a framework that simply provides the same functionality across different ...
4
votes
6answers
210 views
What is the easiest Javascript framework for a newbie web developer?
Put your foot inside the boots of an expert developer that is new to web development.
Certainly he will must deal with JavaScript and probably he will encounter a bit of difficulties with choosing a ...
4
votes
2answers
897 views
How is something like Sproutcore/Qooxdoo helpful?
I am learning Python and building my first web app. I have been going thru the django tutorials and just beginning to think about how to do the client side. I want it to be web 2.0-ish, and will need ...
4
votes
1answer
819 views
Prototype JS swallows errors in dom:loaded, and ajax callbacks?
I can't figure out why prototype suppressess the error messages in the dom:loaded event, and in AJAX handlers.
Given the following piece of HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
...
4
votes
1answer
376 views
Promising alternatives for javascript framework?
Popular JavaScript frameworks/libraries like jQuery, MooTools, Prototype, and YUI (to name a few of the most popular JavaScript frameworks out there) definitely have a solid foothold in the JavaScript ...
4
votes
6answers
178 views
Why is it important to load a JS framework from Google's AJAX Libraries API?
I remember reading somewhere that it is a lot better to load a JS framework from Google's AJAX Libraries API, rather than using a locally hosted one.
This means that instead of :
<script ...
4
votes
9answers
805 views
What's the downside of using too much JavaScript?
I would like to know what are some downsides using too much JavaScript code in a web page?
For example, I will use a jQuery framework for my dropdown menus, tabs and accordion. And other JavaScripts ...
4
votes
2answers
598 views
JavaScript: Link from GitHub or link to local file?
I know that when linking to libraries such as jQuery that are hosted on Google Code it's better to link to the hosted one (Google's).
But when there are other libraries and frameworks hosted on sites ...
4
votes
4answers
142 views
Are there any guides on converting between Javascript frameworks?
I have a date picker library written for MooTools that I want to port to Prototype. It's looking to be a long arduous task and I'm wondering if anyone has seen or written guides on the differences ...
3
votes
3answers
66 views
+50
javascript frameworks: What are UI bindings and composed views?
I'm reading this:
http://codebrief.com/2012/01/the-top-10-javascript-mvc-frameworks-reviewed/
I'm using backbone.js. I love it, though it requires too much boilerplate. Anyway.
The author of the ...
3
votes
3answers
47 views
Looking for JS MVC framework with templating
I've been looking at a few client side JS frameworks like SproutCore and JavaScriptMVC, but was wondering if anyone could recommend a JS framework or template engine that has template inheritance ...
3
votes
2answers
226 views
django and mustache use the same syntax for template
I try to smuggle HTML template in the HTML for mustache.js, however
the django template engine remove all the placeholders that should be
output as-is to the front-end
The template is included in ...