Search Results

7
votes

When to prefer JSON over XML?

Usually JSON is more compact, and faster to parse. Prefer XML if: You need to process the data on the client, and you can leverage XSL for that. Chances are the XML + XSL chai …
9
votes

JS: var self = this?

This question is not specific to jQuery, but specific to JavaScript in general. The core problem is how to "channel" a variable in embedded functions. This is the example: var abc = …
4
votes

Conflict between Drag and drop and sortable jquery plugins

You cannot mix those plugins: they process the same events, and cannot cooperate together. Either rethink your UI, or use different tools. Is it possible to do it? Yes, of course. For examp …
2
votes

Javascript - How do you organize this mess?!?

Dojo had the module system from the day one: Modules expla …
37
votes

Which Javascript framework (jQuery vs Dojo vs … )?

Being a Dojo developer I would recommend Dojo. While my choice is not surprising, I became a Dojo developer because I found following things, which are done better than in other JavaScript framewor …
7
votes

Which JavaScript framework is generally used for high performance websites?

(Full disclaimer: I am a Dojo developer and this is my unofficial perspective). All major libraries can be used in high load scenarios. There are several things to consider: …
2
votes

How can I get class-based objects in JavaScript with jQuery?

jQuery doesn't define OOP primitives, so you are on your own. But it is easy to do what you want with plain JavaScript: MyClass = function(options){ // whatever were in your initi …
3
votes

Prototype, dojo or jQuery?

This question was asked multiple times, and the answer depends on many factors. If all you want is to provide simple gradual enhancements to existing web applications, any major JavaScript …
0
votes

can the name of a input tag be changed with javascript ?

Sure. If jQuery is your poison, this should do the trick: $("input[name=some_name]").attr("name", "other_name"); …
0
votes

Need help with jQuery to JavaScript

Simple: window.onload = function() { document.body.className = "javascript"; } Or in HTML: <body onload="document.body.className = 'javascript …