Questions tagged [yui]

A set of utilities and controls, created by Yahoo in JavaScript and CSS, for building richly interactive web applications using techniques such as DOM scripting, DHTML and AJAX

The YUI (Yahoo! User Interface) library provides tools for professional web development, including a rich JavaScript and CSS library -- all freely available under a liberal BSD license.

Active development of YUI was discontinued by Yahoo! on August 29th, 2014, based on the following:

Most core YUI modules do not have active maintainers, relying instead on a slow stream of occasional patches from external contributors. Few reviewers still have the time to ensure that the patches submitted are reviewed quickly and thoroughly.

Therefore, we have made the difficult decision to immediately stop all new development on YUI in order to focus our efforts on this new technology landscape. This means that, going forward, new YUI releases will likely be few and far between, and will only contain targeted fixes that are absolutely critical to Yahoo properties.


Documentation :


Related tags :

1782 questions
18
votes
7 answers

BDD framework for the frontend?

On the server side we have Rspec/Cucumber for BDD development (ruby) vowsjs (node.js) Is there a BDD frameworks to use on web browsers (not qUnit or YUI test since these are only for TDD)?
ajsie
  • 77,632
  • 106
  • 276
  • 381
18
votes
4 answers

JQuery and YUI, can they live together?

Can JQuery and YUI live together w/o any conflicts?
AnonymousThread
18
votes
5 answers

Mixing jQuery and YUI together in an app, is it easily possible?

I have to preface this with the fact that I love jQuery as a JavaScript language extension and YUI as a rich set of free controls. So here is my question, is there going to be any problems down the line if I mix jQuery and YUI together in an MVC…
Nick Berardi
  • 54,393
  • 15
  • 113
  • 135
17
votes
2 answers

jQuery equivalent of YUI StyleSheet Utility?

Does jQuery - or one of it's plugins - have equivalent functionality to the YUI StyleSheet Utility? "The StyleSheet Utility is capable of creating new stylesheets from scratch as well as modifying the existing stylesheets held as properties of …
edeverett
  • 8,012
  • 33
  • 28
16
votes
2 answers

JavaScript idiom: create a function only to invoke it

I am learning YUI and have occasionally seen this idiom: Why do they create a function just to invoke it? Why not just write: For example see here.
flybywire
  • 261,858
  • 191
  • 397
  • 503
15
votes
1 answer

Missing name after . operator YUI Compressor for socket.io js files

I am trying to use YUI compressor for socket.io based .js file (yes, I know it's server side script and doesn't require minfication, but it's requirement so I have a less control). My code is like this: fs.readFile('../examples/example.xml',…
Pradeep Simha
  • 17,683
  • 18
  • 56
  • 107
14
votes
6 answers

jQuery vs. Yahoo UI API design

I am baffled by the difference in design between jQuery and Yahoo UI APIs. Disclaimer: I have a strong dislike of the jQuery api, but I am also a huge ignorant in web programming and javascript in general, so I could be dead wrong and come back here…
Stefano Borini
  • 138,652
  • 96
  • 297
  • 431
14
votes
4 answers

YuiCompressorTask: "Can't find bundle for base name org.mozilla.javascript.resources.Messages, locale en_US"

I have been using YuiCompressorTask (latest version) on my project for a very long time with no issues. After upgrading to Oracle's Java 1.7 package on OSX, hwoever, it breaks with the following exception (this is for a javascript file; it works…
Alice Young
  • 1,742
  • 2
  • 11
  • 19
13
votes
3 answers

jQuery and YUI (yahoo ui)

So as i understand it jQuery is basically a framework for DOM manipulation as a higher abstraction layer then native javascript. Where as YUI (yahoo UI) library is a user interface widget library giving the developer a means to forget DOM…
AndrewMcLagan
  • 13,459
  • 23
  • 91
  • 158
13
votes
4 answers

Good CSS for flashes (aka info messages in Rails, growls in OSX)

I'm having difficulty getting CSS to work like I want it to for flashes (those little messages that show when you log in or do something or whatnot to confirm your action, eg in Rails). I want it to: live within any arbitrary div look like a…
Sai
  • 6,919
  • 6
  • 42
  • 54
13
votes
4 answers

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, easiest to learn and integrate I already know and use…
The Orca
  • 1,250
  • 2
  • 17
  • 31
13
votes
6 answers

How to automate JavaScript files compression with YUI Compressor?

YUI Compressor does not accept wildcard parameters, so I cannot run it like this: C:>java -jar yuicompressor.jar *.js But I have over 500 files and would rather not have to create a batch file like this: C:>java -jar yuicompressor.jar file1.js -o…
z-boss
  • 17,111
  • 12
  • 49
  • 81
12
votes
10 answers

YUI Reset CSS Makes this not work

This line in YUI's Reset CSS is causing trouble for me: address,caption,cite,code,dfn,em,strong,th,var { font-style: normal; font-weight: normal; } It makes my em not italic and my strong not bold. Which is okay. I know how to override that…
Patrick McElhaney
  • 57,901
  • 40
  • 134
  • 167
12
votes
8 answers

Will existing JavaScript frameworks incorporate CommonJS?

JavaScript frameworks like Prototype, jQuery, YUI, MooTools, Dojo, et al. all seem to target client-side developers, with the focus on enabling common user interaction patterns to be implemented more efficiently and with less code. With the…
Jeff Hammerbacher
  • 4,226
  • 2
  • 29
  • 36
11
votes
1 answer

Drag and drop elements into an iframe. Droppable area has wrong coordinates and collisions are wrong

I need to implement drag and drop functionalities in a web application between elements present in a web page, and elements inside an iframe (before you start complaining about iframes, I NEED it for technical reasons, it's not an option). I have…
Jose Faeti
  • 12,126
  • 5
  • 38
  • 52