How can I get the email address from a URL to appear on my webpage with javascript or HTML with a website built on Ruby on Rails?
I have a URL like this:
http://dance.danceninjas.com/thanks-so-good?cf_uvid=1ce505f1e32477b73a15a514962e25b2&email=test324@gmail.com
And I want to pull the email address from the URL into the webpage so I can say:
Please verify your email is correct:
<EMAIL_HERE>
I know that with WordPress I would use the PHP code:
echo $_GET["email"];
But apparently that won't work with websites built with Ruby on Rails.
I am using ClickFunnels to build my website, which means I have the ability to add Javascript into my footers and add snippets of custom HTML code.
Does anyone know how I can accomplish this?