Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 160 Bytes

simple-wrapper.md

File metadata and controls

17 lines (14 loc) · 160 Bytes

Jquery simple wrapper

(function($) {
    //...
})(jQuery);

Coffeescript:

(($) ->
  $ ->
    # Document ready
)(jQuery)