![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| ||||
| ||||
|
|
i'm trying to send a mass-email |
|
using microsoft's list builder (http://www.bcentral.com/products/lb/default.asp). my html file is clean and the javascript links work fine in all browsers. |
|
when the emails are received though, clicking on the links opens two browser windos: one --on top -- displays the content correctly. the other one - always on the bottom -- displays "[object]". is there something i should change in the links to make them work in outlook/mail/entourage? |
|
thanks, alberta the links are all like this: javascript:seriesdetails=open('http://www.cinema.ucla.edu/calendar/calendard |
#3
| |||
| |||
|
|
i'm trying to send a mass-email using microsoft's list builder (http://www.bcentral.com/products/lb/default.asp). my html file is clean and the javascript links work fine in all browsers. when the emails are received though, clicking on the links opens two browser windos: one --on top -- displays the content correctly. the other one - always on the bottom -- displays "[object]". is there something i should change in the links to make them work in outlook/mail/entourage? thanks, alberta the links are all like this: javascript:seriesdetails=open('http://www.cinema.ucla.edu/calendar/calendard |
#4
| |||
| |||
|
|
For the rest see Ivo's post. Why use Javascript in an e-mail? I am not a very suspicious person, I don't use popup blockers and stuff like that, but I would _never_ allow scripting in e-mails. |

#5
| |||
| |||
|
|
In article <4098c63e$0$15594$afc38c87 (AT) news (DOT) easynet.ch>, derernst@NO#SP#AMgmx.ch enlightened us with... For the rest see Ivo's post. Why use Javascript in an e-mail? I am not a very suspicious person, I don't use popup blockers and stuff like that, but I would _never_ allow scripting in e-mails. The only people I know who DO allow scripting are newbies using Outlook. The first virus they get, they disable scripting. However, if this is for an intranet application where you know your users have script, go for it. Try using window.open instead of just open. If that doesn't do it, change the target of _blank to _self in the open. That's all I can think of. ![]() |
#6
| |||
| |||
|
|
So is the syntax seriesdetails=open('url','_blank'); creating a window with the name "seriesdetails"? I thaught that would make seriesdetails a variable with the value true if window is opened, and the name of the window was '_blank'... But I am really not sure about that. |

#7
| |||
| |||
|
|
In article <409906d0$0$18570$afc38c87 (AT) news (DOT) easynet.ch>, derernst@NO#SP#AMgmx.ch enlightened us with... So is the syntax seriesdetails=open('url','_blank'); creating a window with the name "seriesdetails"? I thaught that would make seriesdetails a variable with the value true if window is opened, and the name of the window was '_blank'... But I am really not sure about that. A new window will be created with the window.open command. The variable seriesdetails will point to it. I haven't seen any other code, so if open (without the window in front) is defined in other code, it may or may not function the same. I also don't know what happens, really, when you name your window a reserved (?) target name like _blank. Seeing that makes me think what would normally be the name of the window in the standard window.open command is actually a target in a user defined open command. The OP was using a microsoft tool to create this, so all bets are off. ![]() |
#8
| |||
| |||
|
|
"alberta soranzo" <albertasoranzo (AT) earthlink (DOT) net> schrieb im Newsbeitrag news:5ea6c71a.0405041456.7ef0f75d (AT) posting (DOT) google.com... ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^ [...] the links are all like this: javascript:seriesdetails=open('http://www.cinema.ucla.edu/calendar/calendard etails.aspx?details_type=2&id=123','_blank','menub ar=no,scrollbars=yes,resiz able=yes,width=600,height=450');seriesdetails.focu s(); |
|
You focus a window called 'seriesdetails', but there is none, as the window you create is called '_blank'. So your e-mail client might think it should create one, another one might not... |
![]() |
| Thread Tools | |
| Display Modes | |
| |