the encryption part works perfect, but when someone clicks on it in a web browser it not only does what it's supposed to (open their mail client) but it also replaces the webpage with the email address as the site content, i.e.:
page is replaced entirely with:
mailto:someemail@comcast.net?
and that's it... I'm on IE 7 on Windows.
page is replaced entirely with:
mailto:someemail@comcast.net?
and that's it... I'm on IE 7 on Windows.
Re: mailto encrypter not really working
Re: mailto encrypter not really working
not sure what i'm supposed to post-- the code was written by fckeditor so certainly they have that and know what the output is. Since the encryption is done with a javascript call in the 'href' then the browser is both executing the javascript but also going to that href address, which is just an email. I tried adding a 'return false' but that didn't work. I got around all this though by changing the config file to use the function method instead of the encryption (which is the default)
Re: mailto encrypter not really working
Description
I noticed email links in html/text modules not working normally.
When you click on them, I get my usual mail client, but the browser immediately displays a new page, empty, with just the text: mailto:me@home.com. It has to do with the javascript that is inserted when you create a mailto link inside dnn:
<a href="javascript:location.href='mailto:'+String.fromCharCode(109,101,64,104,111,109,101,46,99,111,109)+'?'">me@home.com</a>
What this does, is redirect to the result of the location.href call!
I worked around this by placing the javascript inside a void() statement.
Is this something other people experience as well?
I use dnn 04.09.00 and IE 7.0 on Win XP
Re: mailto encrypter not really working
Why not use this;
Re: mailto encrypter not really working
Re: mailto encrypter not really working