I've seen some coworkers use this in rails
$('[data-once=true]').live('ajax:before', function(request, e) {
});
However I'm trying to use it with jquery and it doesnt work, does this event es with the rails jquery adapter?
I've seen some coworkers use this in rails
$('[data-once=true]').live('ajax:before', function(request, e) {
});
However I'm trying to use it with jquery and it doesnt work, does this event es with the rails jquery adapter?
Share edited Jan 1, 2011 at 8:24 Nick Craver 631k138 gold badges1.3k silver badges1.2k bronze badges asked Jan 1, 2011 at 2:07 ryudiceryudice 37.5k33 gold badges120 silver badges164 bronze badges3 Answers
Reset to default 4Yes, ajax:before
is a jQuery event that rails adds/triggers, though in the latest version it's not ajax:beforeSend
. In jQuery though (ajax:before
was around before the JS framework agnostic changes to rails), you can just attach to this globally, using the ajaxSend
global event, like this:
$(document).bind('ajaxSend', function(e, request, options) {
$('[data-once=true]').something();
});
I'm not a rails dev, so I'm not sure how rails changes this equation, but this is how I'd attach an function to the AJAX before in plain ole' JS:
$.ajax({
beforeSend: function(){
alert("Before");
},
plete: function(){
alert("after");
}
});
Note that these events are fired for all AJAX requests thereafter. You're essentially subscribing to the AJAX object.
See the jQuery AJAX Events Documentation for more info.
This 'ajax:before'
isn't a useful event for .live()
to handle, unless you've defined a custom event with that name.