Css attribute selectors and javascript

I've came across this lines of code in a project I'm trying to implement it's a standard newsletter form at first sight:\[code\]<form id="form_newsletter"> <input type="text" name="newsletter" id="newsletter" placeholder="Email Address..." /></form> \[/code\]My problem is that when I click into the form text field in order to write the email address the submit link button appear on the side which should be triggered by this css (attribute selector if I'm correct) element: \[code\]input[type="submit"]\[/code\]My question is how can I make the submit button post the address submitted to my email address? Basically where can I enter a recipient for the newsletters subscribers? If it's a javascript function how can I locate it and edit it to my need?
 
Back
Top