Case in point: a pretty important line of code that can help generate revenue. Turns out this didn't work with Safari / Chrome:
$('#btnSubmit').trigger('submit');But this does:
$('form#ajaxForm').trigger('submit');A good reminder to actually test and not assume. I'm glad I have a co-worker who has a knack for breaking things before customers do.
No comments:
Post a Comment