17.3 - jQuery Triggers
It's possible to create custom jQuery functions to extend plugin features. If you need to add custom Javascript to your website you could install this plugin.
- awspcBeforeCalculatePrice: This function is called before the price calculation.
- awspcAfterCalculatePrice: This function is called after the price calculation.
jQuery(document).bind("awspcBeforeCalculatePrice", function(ev){ alert("Message before price calculation"); });
jQuery(document).bind("awspcAfterCalculatePrice", function(ev){ alert("Message after price calculation"); });