Search Results

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} …
1
vote

Is there any good way to convert existing YUI based scripts into JQuery code?

I use YUI (2 and 3) with all my ASP.NET MVC code, there is nothing not "MVC-Friendly" in YUI. That said, and assuming you're using YUI2 (YUI3 has more similarity to JQuery), it's not necess …
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 …
0
votes

Support for encoding query string or POST data in YUI ?

YUI3 has the io-form module, which you can instantiate in your call the use. It allows you to write code like this: YUI().use('node', 'io-form', function(Y) { Y.get('#formId').on(' …
0
votes

YUI Editor hiding the title bar?

You can use CSS to hide the titlebar. #editor-container .yui-toolbar-titlebar { display: none; } #editor-container should be the id of the containing div. For mor …
5
votes

What is a good yui replacement for jquery.live

In YUI3, delegates perform this function. The following snippet will fire a method called "clickHandler" on any 'p' tag …