2
votes
What is the best lightweight javascript framework?
I'm a big fan of the Yahoo! User Interface (YUI) Library. It has a good set of DOM manipulation stuff, and a pretty solid widget framewo …
0
votes
How to automate JavaScript files compression with YUI Compressor?
You'll need to use some sort of a script to get a list of all the .js files, and then runs the YUI Compressor on all of them. On the windows command prompt, something like this should work:
…
3
votes
How to automate JavaScript files compression with YUI Compressor?
I should mention that using GNU Make, I have the following rule:
%-min.js: %.js
${java} -jar ${compressor} $< -o ${<:.js=-min.js}
…
5
votes
JavaScript: ‘Disallow leading _ in identifiers’ as an option in JSLint
I've actually e-mailed Crockford on this. This was his response:
I think _ should be reserved for
system code implementation, and not
used by applications.
…
2
votes
jsonp request not working in firefox
JSONP is something that needs to be supported on the server. I can't find the documentation, but it appears that, if Reddit supports JSONP, it's not with the jsoncallback query variable.
Wh …
1
vote
What does x(); refer to?
x is a variable which, because it is scoped outside of the function that has been assigned to y.z, is accessible inside of y.z
What is going on in that code is that y is initialized to a ne …
1
vote
JQuery $.ajax “async: false” bug?
You're encountering a scoping problem here. The URL variable in your JS code is declared as via the var keyword inside the scope of the download function. This means that only code inside the downl …
3
votes
What’s your favorite JS/CSS drop down menu?
I use the YUI Menu. It's quite flexible, offers many methods of declaring what's in the list, and is easy to skin.
…
0
votes
What is the best way to access ASP.net Session Data using JavaScript?
There are two alternatives I can see:
Generate a JSON object of the Session data you want the JavaScript to have access to. Send this to the browser either during the initial page gen …
3
votes
JavaScript: Setting methods through prototype object or in constructor, difference?
The difference is when you derive a class from Message Class. Only the methods declared on the prototype will be available on child classes of Message.
…
0
votes
Asynchronous cross-domain POST request via JavaScript?
YUI3's IO object offers cross-domain requests, however it does so us …
2
votes
Graceful degradation of anchor tags with javascript
Simple, don't use the javascript: URI syntax as the href, at least, not in the HTML delivered to the client.
Deliver the HTML from the server with the href taking the user to whatever page …
27
votes
What good is JSLint if jQuery fails the validation
JSLint tests one particular person's (Douglas Crockford) opinions regarding what makes good JavaScript code. Crockford is very good, but some of his opinions are anal retentive at best, like the un …
0
votes
Javascript On blur event
Your other alternative, is to handle onclick events on the body, but that could get slow fairly quickly. If you were to go that route, it would look something this like:
<html> …
0
votes
Advice “upgrading” from jQuery 1.2.6 to YUI 3?
While Matt Sweeney was working on Sizzle integration into YUI3, the last I heard of the project was that it was temporarily on hold due to the pretty severe filesize bump Sizzle introduced. I belie …
