Files
booking/booking.js
Nathan Coad bfc1e642ab js test
2016-06-03 11:01:54 +10:00

10 lines
330 B
JavaScript

/**
* Special Effects AJAX framework command.
*/
Drupal.ajax.prototype.commands.bookingEmailIDs = function(ajax, response, status) {
jQuery(function($) {
var arr = $.parseJSON($('input#booking_email_default_ids').val())
alert(arr.first()); // this will be executed after the ajax call
});
}