Skip to content

Instantly share code, notes, and snippets.

@thotbox
Last active August 29, 2015 14:04
Show Gist options
  • Save thotbox/7d583d85f6d44d6d13b9 to your computer and use it in GitHub Desktop.
Save thotbox/7d583d85f6d44d6d13b9 to your computer and use it in GitHub Desktop.
JavaScript: Freeform Pagination HTTPS Fix
// Pagination Links Fix
$('#pagination a').each(function() {
var href = $(this).attr('href');
if (href.indexOf('http:') > -1) {
href = href.replace('http:', 'https:');
$(this).attr('href', href);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment