IE javascript navigation doesn't work for some users

G

Guest

I have four users on my XP Pro PC and three of them cannot navigate to links which use javascript for navigation

Here is the minimum code required to reproduce my problem
<html><body><a href="http://www.microsoft.com">href test</a><a href="javascript:window.open('http://www.microsoft.com')">javascript test</a></body></html

The javascript link only works for one user and not the others

Thanks for any help you can offer
 
G

Guest

I've narrowed down (or expanded<g>) the problem. It seems even the context menu item for a link to open in a new window doesn't work

And non-javascript anchor tags can also demonstrate the problem. So, some updated HTML
<html><head><script
function testit() {
try {
window.open('http://www.microsoft.com')
} catch (e) {
alert(e);


</script></head><body><a href="http://www.microsoft.com">href test</a><a href="http://www.microsoft.com" target="_blank">href target test</a><a href="javascript:testit();">javascript test</a></body></html

The alert just displays "object Error

Thanks again

Dav

----- Dave wrote: ----

I have four users on my XP Pro PC and three of them cannot navigate to links which use javascript for navigation

Here is the minimum code required to reproduce my problem
<html><body><a href="http://www.microsoft.com">href test</a><a href="javascript:window.open('http://www.microsoft.com')">javascript test</a></body></html

The javascript link only works for one user and not the others

Thanks for any help you can offer
 

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

Top