web pages can't open new window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have four users on my XP Pro PC and three of them cannot navigate to links which open a new window, either through an anchor tag targetting _blank or through javascript window.open()

Here is a simple page to reproduce my problem
<html><head><script
function testit() {
try {
window.open('http://www.microsoft.com')
} catch (e) {
alert(e);


</script></head><body><!-- works --><a href="http://www.microsoft.com">href test</a><br><!-- doesn't work --><a href="http://www.microsoft.com" target="_blank">href target test</a><br><!-- doesn't work --><a href="javascript:testit();">javascript test</a></body></html

The alert just displays "object Error"


Thanks for any help you can offer

Dav
 
Thanks, Kenrick. I'll try it, but if the DLLs weren't registered properly wouldn't all users have the same problem?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top