vote up 0 vote down star

Try clicking on the "Print" button on the following page: (link removed - consensus is that everything was working fine and the problem was my setup) For debugging purposes, I've replaced a chunk of javascript with a simple alert("test"), and even that isn't showing up in IE7 for me. It works totally fine in Safari, FF (Mac and PC) and IE6, but for some reason it's not working in IE7. For your reference, the code in the button is this:

<a onclick="makeNewWindow()" href="#"><img src="/print.gif"/></a>

And the JS inside /newsletter/print.js is this:

function makeNewWindow() {
   alert("test");   
}

Can anyone help me understand if there's a way around this, or if this has something to do with the fact that I'm running "IE7 Standalone" via Parallels on my Mac? Any help is greatly appreciated.

Thanks, Mike

flag
nothing with your question, but instead href="#" use href="javascript:void(0);" so you can avoid those jumps when someone clicks in the image... as I said, it's not your question but to improve your code in the future :) – balexandre May 25 at 11:26
Do you have somekind of aggressive popup blocker installed ? – PQW May 25 at 11:31

5 Answers

vote up 3 vote down

Just tested it on IE7 Vista and it worked fine... Your code looks sound as well, so I think it might be an issue with your setup?

link|flag
Agreed, code looks fine. – jtyost2 Nov 24 '08 at 7:31
vote up 3 vote down

Javascript is probably disabled in your particular setup of IE7. See this link how to enable it : http://www.tranexp.com/win/JavaScript-enabling.htm

link|flag
vote up 2 vote down

could be that it's caching an older version of the js file? try ctrl-F5

link|flag
vote up 2 vote down

I'm guessing that you have an error with OTHER javascript code which is causing your browser to just ignore everything else.

Also you may want to change that code to ... onclick="makeNewWindow();return false" ... in order to avoid confusion

link|flag
vote up 0 vote down

I have the same issue with IE7 standalone - it refuses to alert anything. Infuriating.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.