hack with yui

9
Jai Santhosh Frontend Engineer, Hacker http://twitter.com/jaisanth Hack with YUI

Upload: jai-santhosh

Post on 24-May-2015

2.304 views

Category:

Technology


0 download

DESCRIPTION

YUI talk for IITD HackU

TRANSCRIPT

Page 1: Hack with YUI

Jai SanthoshFrontend Engineer, Hackerhttp://twitter.com/jaisanth

HackwithYUI

Page 2: Hack with YUI

“The browser is the most futile deployment environment…”

- Douglas Crockford

Page 3: Hack with YUI
Page 4: Hack with YUI

Don’t reinvent the wheel

Use tools which are already available

Page 5: Hack with YUI

A comprehensive suite of tools to help you code like a pro!!

http://yuilibrary.com/

Page 6: Hack with YUI

YUI Library

• CORE

• UTILITIES

• CSS

• WIDGETS

http://yuilibrary.com/yui/docs/guides/

Page 7: Hack with YUI

Code

<script src="http://yui.yahooapis.com/3.4.1/build/yui/yui-min.js"></script>

Page 8: Hack with YUI

Using Modules

YUI().use('node', 'event', function(Y) {

var demo = Y.one('#demo'); //Get id="demo"demo.on("click", function (e) {

//Do stuff when #demo is clicked});

});

Page 9: Hack with YUI

EXAMPLES

http://hackyourworld.org/hackuiitd/yui_yql_example.html