vitalsource / jquery-readyselector

Extends `$().ready()` to provide a convenient syntax for page-specific script

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

With the Rails asset pipeline or other asset packagers, you usually include the JS for your entire application in one bundle, while individual scripts should be run only on certain pages.

jquery.readyselector extends .ready() to provide a nice syntax for page-specific script:

$('.posts.index').ready(function () {
  // ...
});

This works well if you include the controller name and action as <body> element classes, a la: http://postpostmodern.com/2009/02/20/a-body-with-class/

The callback will be run once for each matching element, with the usual 'this' context for a jQuery callback. $(fn), $(document).ready(fn), and $().ready(fn) behave as normal.

About

Extends `$().ready()` to provide a convenient syntax for page-specific script

License:MIT License


Languages

Language:JavaScript 100.0%