Last active
October 1, 2015 00:56
-
-
Save ray-peters/93c63ede6b3c5c9583ff to your computer and use it in GitHub Desktop.
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
/* place this in footer scripts */ | |
$( document ).ready( function() { | |
$(".container:has(form[action*='form_processor.php'])" ) | |
.attr( "id", "signup-form" ) | |
.attr( "name", "signup-form" ); | |
$( "a[href*='jump-to-signup-form']" ).attr( "href", "#signup-form" ); | |
} ); | |
/* name your link URL something like: http://jump-to-signup-form.com */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment