Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 279 Bytes

jquery.md

File metadata and controls

15 lines (10 loc) · 279 Bytes

JQuery Tips

Note: you need to install the jquery.d.ts file for these tips

Quickly define a new plugin

Just create jquery-foo.d.ts with:

interface JQuery {
  foo: any;
}

And now you can use $('something').foo({whateverYouWant:'hello jquery plugin'})