I have an Iframe for a page that allows people to sign up for my email newsletters.
I want to auto fill the email field in the iframe based on the querystring url (page.html?email=email)
I know how to do the querystring stuff, I'm just not sure If I'm able to access the input text box within the frame. The form or the textbox neither have id's they only have names.
I've tried the following..
$("email_frame").contents.find('input[name=email]').append("test");
Any help would be great.