This commit is contained in:
Nathan Coad
2016-06-03 10:58:32 +10:00
parent 8c6c935233
commit d3ef2572a1

View File

@@ -2,6 +2,9 @@
* Special Effects AJAX framework command. * Special Effects AJAX framework command.
*/ */
Drupal.ajax.prototype.commands.bookingEmailIDs = function(ajax, response, status) { Drupal.ajax.prototype.commands.bookingEmailIDs = function(ajax, response, status) {
var initValues = $('input:hidden#booking_email_default_ids').val();
alert(initValues) ; // this will be executed after the ajax call jQuery(function($) {
var initValues = $('#booking_email_default_ids').val();
alert(initValues); // this will be executed after the ajax call
});
} }