How do I get information that my site visitors leave, emailed to me?
Is there an HTML, Javascript code / way I can get emailed information that my site visitors fill in?
You can perform operations when a visitor leaves, using the "onunload" event in your body tag:
<body onunload="javascript_function()" >
–
If you want a form filled, then sent to your email, you need server side script (ie Php).
Download the "Form to email" script from http://www.web2coders.com
It is free (and there are several other free scripts)
November 20th, 2009 at 5:42 pm
http://www.google.com/search?hl=en&client=firefox&rlz=1R1GGGL_ru___UA332&hs=AGR&q=contact+form+script&aq=9&oq=contact+form&aqi=g-e3g7
References :
November 20th, 2009 at 6:13 pm
You can perform operations when a visitor leaves, using the "onunload" event in your body tag:
<body onunload="javascript_function()" >
–
If you want a form filled, then sent to your email, you need server side script (ie Php).
Download the "Form to email" script from http://www.web2coders.com
It is free (and there are several other free scripts)
References :