As I look through the Rails 3 jquery-ujs code, I notice that it binds to custom JavaScript events (submit.rails, click.rails, etc). Does anyone know where are these custom '.rails' events defined? I'm just trying to better understand how the UJS stuff in Rails 3 works so I can use it more effectively...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
These are namespaced events. There's no definition for them; For example, assume that you have some element,
In your code, you also have:
Now, Rails may want to invoke that remote handler at some point, but if it just called |
|||||||
|