Wells-it.com - Web Hosting

Review Request: Email Subscribe Pop Up

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.
gavin681's picture

They have: 184 posts

Joined: May 2001

Hi Everyone,

I've added an "exit" pop up to my web site, which allows visitors to subscribe to my newsletter, and I need some constructive feedback on it.

http://www.fast-sites.net

My questions:

1. In your browser does it display correctly and what type of browser do you use?

2. Is this pop up too annoying?

3. Any other comments or suggestions?

Thanks for your time.

Brooke's picture
Developer

She has: 681 posts

Joined: Feb 1999

I think that it works. Personally I don't like pop ups or use them. But that does not mean it will remind someone and it will work.

But it looks good to me!

Brooke

Brooke
CATALUÑA - your Web and Print Connection

We develop effective web sites and print marketing materials for small service based businesses.
www.cataluna.com

davidjaymz's picture

He has: 193 posts

Joined: Jul 2001

Hi...
In Opera 6.01 the popup appears as just the title bar, I had to manually drag it so that I could see the content... I'm gussing you've used javascript to size the new window... You'll have to check out another way to do this for it work in Opera....

DavidJaymz

Abhishek Reddy's picture
Moderator

He has: 3,303 posts

Joined: Jul 2001

Too annoying. Sorry. Sad

a) onUnload is also triggered when changing to another page (even those on your site) and when refreshing/page back, forward etc, not just when closing window.

b) There are reasonable uses for pop ups but IMO this isn't. I'd prefer to see an easily accessible form in the main window to sign up.

c) I had to disable PopUp Stopper to test it. I would never have seen it otherwise. (Thus, I would not have signed up.) Consider b.

gavin681's picture

They have: 184 posts

Joined: May 2001

Thanks for the feedback guys.

DavidJaymz, Thanks for the info I had the height set to "1" as I noticed it didn't make any difference in IE and Netscape but I guess in Opera it does so I changed height to "96". Does it display ok now?

Abhishek Reddy, sorry I'm sticking with it as my clients who use it have been getting 300% increase in signups. It may be annoying to some people but a larger mailing list means more sales in the long run for my clients.

davidjaymz's picture

He has: 193 posts

Joined: Jul 2001

Quote: Originally posted by gavin681

DavidJaymz, Thanks for the info I had the height set to "1" as I noticed it didn't make any difference in IE and Netscape but I guess in Opera it does so I changed height to "96". Does it display ok now?

Displays properly now...

Hope it works out for you...

DavidJaymz Laughing out loud

disaster-master's picture

She has: 2,152 posts

Joined: May 2001

Looks fine on IE6, Opera6, NS 4.79.

However, it not only pops up on exit, it also pops up between pages too. Wasn't sure if it was suppossed to do this or not.

I hate pop ups but this one isn't too annoying and I feel that it serves its purpose.Wink

Sonia

"Life is not a journey to the grave with the intention of arriving safely in a pretty and well preserved body, but rather to skid in broadside, thoroughly used up, totally worn out, and loudly proclaiming -- WOW--What a Ride!!!"

gavin681's picture

They have: 184 posts

Joined: May 2001

Thanks DavidJaymz.

disaster-master. Yes pops up when leaving the home page. I will be adding a cookie code which will stop the pop up if someone has already subscribed.

The Webmistress's picture

She has: 5,587 posts

Joined: Feb 2001

I would just have it one the page, I always instantly just close any pop ups on close as they are always adverts and if I wanted to subscribe to a newsletter I'd find the link on the main site otherwise it just feels like it's being thrust in my face. Sorry Wink

Julia - if life was meant to be easy Michael Angelo would have painted the floor....

mjames's picture

They have: 2,064 posts

Joined: Dec 1999

It would probably be more effective if you made it to popup once - ever. Users don't need to see it every time they leave and it will only be annoying for regular visitors. Also, some sort of small image might make it more attractive. It's definitely not too small.

I use a popup for my newsletter on my site using cookies: http://sports-central.org/popup.shtml

Use this code (change the config parts at bottom if interested):

<!--
function getCookieVal (offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0)
break;
}
return null;
}

function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (2 < argc) ? argv[2] : null;
var path = (3 < argc) ? argv[3] : null;
var domain = (4 < argc) ? argv[4] : null;
var secure = (5 < argc) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}

function DisplayInfo() {
var expdate = new Date();
var visit;
expdate.setTime(expdate.getTime() +  (24 * 60 * 60 * 1000 * 365));
if(!(visit = GetCookie("visit")))
visit = 0;
visit++;
SetCookie("visit", visit, expdate, "/", ".sports-central.org", false);
var message;
if(visit == 1)
popup()
}

/////////////editable part///////////////////////////////////////
function popup(){
window.open('http://www.sports-central.org/popup.shtml','win1','width=400,height=350,resizable')
}

/////////////editable part///////////////////////////////////////
//-->

'

gavin681's picture

They have: 184 posts

Joined: May 2001

mjames... Thanks for the code. Unfortunately it's not working on my site. I'm just a copy and paste coder so I have no idea what I'm doing. Anyway you might be able to surf on over to my home page and see what I did wrong? It would be most appreciated. http://www.fast-sites.net

mjames's picture

They have: 2,064 posts

Joined: Dec 1999

You have to make sure you edit the editable part at the bottom of that code. Create a .html file (or .html, whatever you want) and that's where you link to your popup window. You can control the height and width through this, too. Then, create a popup.js file and paste the code above in it. On your pages, put this code in your header:
&lt;script LANGUAGE="JavaScript" SRC="http://www.fast-sites.net/popup.js"&gt;&lt;/script&gt;'