Last active
August 29, 2015 14:04
-
-
Save thotbox/7d583d85f6d44d6d13b9 to your computer and use it in GitHub Desktop.
JavaScript: Freeform Pagination HTTPS Fix
This file contains hidden or 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
// 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