Last active
May 5, 2017 16:34
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#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