Events
Event Codes
Example Usage
// using the "push" method because we're not sure if RIS has loaded yet.
window.ris = window.ris || [];
window.ris.push('on', {
event: 'reserve_modal.submit',
callback: function() {
alert("New reservation created!");
}
});Last updated