Skip to content

Instantly share code, notes, and snippets.

@timramseyjr
Last active May 5, 2017 16:34
Show Gist options
  • Save timramseyjr/ec86fa509c008fbfd4adb968681f678d to your computer and use it in GitHub Desktop.
Save timramseyjr/ec86fa509c008fbfd4adb968681f678d to your computer and use it in GitHub Desktop.
Search on SSL gives warning if form action is not https. This script circumvents this by not setting form action and redirecting the page with serialized form onSubmit
$('#cartform').on('submit', function(e){
e.preventDefault();
var formData = $(this).serialize();
var formAction = $(this).data('action');
window.location.href = formAction+formData;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment