Aantal berichten: 63 | Lid sinds: 21-11-2009 | Geplaatst om: 18:36 - 10-02-2011
Ik vond dit op internet, zag er goed en lekker simpel uit om een link vanaf website rechtstreeks te versturen via e-mail. Ik loop alleen tegen een ding aan: het zet _files/widget2_markup.html achter de link naar de website, waardoor de link onbruikbaar wordt Waar moet ik wat wijzigen?
zie onderstaande post
(Bewerkt door Dorien om 18:51, 10-02-2011)
Pieterr Niet Aanwezig
Een ware MacFreak!
Aantal berichten: 6384 | Lid sinds: 26-08-2009 | Geplaatst om: 18:39 - 10-02-2011
Ik zie geen code.
Overigens: code met ellebooghaken posten op dit forum kun je vergeten... maak een screendump.
"One experiment is better than a thousand expert opinions. Try it."
Pieterr Niet Aanwezig
Een ware MacFreak!
Aantal berichten: 6384 | Lid sinds: 26-08-2009 | Geplaatst om: 18:41 - 10-02-2011
Ik zie wel code als ik jouw posting citeer...
"One experiment is better than a thousand expert opinions. Try it."
Dorien Niet Aanwezig
Gevorderd Lid
Aantal berichten: 63 | Lid sinds: 21-11-2009 | Geplaatst om: 18:49 - 10-02-2011
Code:
<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin // Script by Trånn: http://come.to/tronds // Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
var initialsubj="Interessante pagina" var initialmsg="Hoi!\n\n Ik zag dit artikel op www.de-gezondheidsgids.nl en dacht dat je het wel interessant zou vinden: "+window.location var good; function checkEmailAddress(field) {
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.go v)|(\.org)|(\.info|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi); if (goodEmail) { good = true; } else { alert('Please enter a valid address.'); field.focus(); field.select(); good = false; } } u = window.location; function mailThisUrl() { good = false checkEmailAddress(document.eMailer.email); if (good) {
<body> <form name="eMailer"> Artikel doorsturen: <input type="text" name="email" size="26" value=" E-mail adres ontvanger" onFocus="this.value=''" onMouseOver="window.status='Enter email address here and tell a friend about this site...'; return true" onMouseOut="window.status='';return true">
<input type="button" value="Verzenden" onMouseOver="window.status='Click to send an email (with this page address) to a friend! Enter email address above...'; return true" onMouseOut="window.status='';return true" onClick="mailThisUrl();"> </form> </body> </html>