473,396 Members | 1,785 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

IE6 blocking (safe) content

Jon
Hi there,

In many of my sites I have code like:

<SCRIPT language="JavaScript" type="text/javascript">
<!--
user = "USER";
isp = "DOMAINNAME.XXX";
document.write('<a href=\"mailto:' + user + '@' + isp + '\">');
document.write(user + '@' + isp + '<\/a>');
// -->
</SCRIPT>

on some I simply use:

<a href="javascript:void(window.open('XXX.htm', 'Picture',
'width=XXX,height=XXX'))">Text</a>

to open windows with zoomed pictures therein and

<a href="javascript:window.close()">Close</a> to close them.

However, IE6 thinks this is unsafe!!!! and blocks the script -

I can alter my settings to permit them, but visitors might not....

What can I do to resolve this? Any thoughts?

Thanks

Jon

jon - at - compasscomputing - dot - co - dot - uk
Jul 23 '05 #1
16 2329
"Jon" <jon@SPAM_OFFtheexperts.co.uk> wrote in
news:ci**********@hercules.btinternet.com:
Hi there,

In many of my sites I have code like:

<SCRIPT language="JavaScript" type="text/javascript">
<!--
user = "USER";
isp = "DOMAINNAME.XXX";
document.write('<a href=\"mailto:' + user + '@' + isp + '\">');
document.write(user + '@' + isp + '<\/a>');
// -->
</SCRIPT>

on some I simply use:

<a href="javascript:void(window.open('XXX.htm', 'Picture',
'width=XXX,height=XXX'))">Text</a>

to open windows with zoomed pictures therein and

<a href="javascript:window.close()">Close</a> to close them.

However, IE6 thinks this is unsafe!!!! and blocks the script -

I can alter my settings to permit them, but visitors might not....

What can I do to resolve this? Any thoughts?


Don't ever rely on javascript being enabled.
Use a form plus server-side script to process
'email enquiries', and don't force new windows
on your site visitors.

--
Dave Patton
Canadian Coordinator, Degree Confluence Project
http://www.confluence.org/
My website: http://members.shaw.ca/davepatton/
Jul 23 '05 #2
begin quote from Jon in <ci**********@hercules.btinternet.com>:
Hi there,

In many of my sites I have code like:

<SCRIPT language="JavaScript" type="text/javascript">
<!--
user = "USER";
isp = "DOMAINNAME.XXX";
document.write('<a href=\"mailto:' + user + '@' + isp + '\">');
document.write(user + '@' + isp + '<\/a>');
// -->
</SCRIPT>
[I'm writing from the HTML authoring perspective here, only crossposting
because the original was crossposted and I'm not sure if the OP reads
c.i.w.a.html, though followups are directed to this group.]

Which will break on browsers without scripting. How do you expect these
users to e-mail you? (And no, lack of scripting does not automatically mean
someone is a spammer, and e-mail harvesting bots will almost certainly
become sophisticated enough to get around this in the future.)
on some I simply use:

<a href="javascript:void(window.open('XXX.htm', 'Picture',
'width=XXX,height=XXX'))">Text</a>
Which will break on browsers without scripting, with the added problem that
users get something that looks like a link but doesn't actually take them
anywhere.
to open windows with zoomed pictures therein and

<a href="javascript:window.close()">Close</a> to close them.

However, IE6 thinks this is unsafe!!!! and blocks the script -
However clueless IE's behavior is (and of course, this is a Microsoft
product so it's likely the cluelessness detector will peg), you shouldn't
rely on scripting anyway.
I can alter my settings to permit them, but visitors might not....

What can I do to resolve this? Any thoughts?


Try browsing your own sites with scripting completely disabled for a while,
pretending the option to re-enable it doesn't even exist.

There are situations where depending on a user to have scripting enabled is
patently ridiculous. Essential functionality should never require it on a
properly authored site.

--
Shawn K. Quinn
Jul 23 '05 #3
DU
Jon wrote:
Hi there,

In many of my sites I have code like:

<SCRIPT language="JavaScript" type="text/javascript">
<!--
user = "USER";
isp = "DOMAINNAME.XXX";
document.write('<a href=\"mailto:' + user + '@' + isp + '\">');
document.write(user + '@' + isp + '<\/a>');
// -->
</SCRIPT>

on some I simply use:

<a href="javascript:void(window.open('XXX.htm', 'Picture',
'width=XXX,height=XXX'))">Text</a>

to open windows with zoomed pictures therein and

<a href="javascript:window.close()">Close</a> to close them.

You assume visitors have javascript support is enabled.
You also try to force new windows on visitors.
However, IE6 thinks this is unsafe!!!! and blocks the script -

The script to close the windows you created is excessive.
I can alter my settings to permit them, but visitors might not....

What can I do to resolve this? Any thoughts?

Thanks

Jon

jon - at - compasscomputing - dot - co - dot - uk


There is simple way to permit your pictures without having them blocked
by MSIE 6 or any popup blocker: don't try to force popup windows with
javascript pseudo-protocol (javascript links) which are known to just
create problems. Leave these issues to users themselves.

DU
--
The site said to use Internet Explorer 5 or better... so I switched to
Netscape 7.2 :)
Jul 23 '05 #4
Jon wrote:
Hi there,

In many of my sites I have code like:

<SCRIPT language="JavaScript" type="text/javascript">
<!--
user = "USER";
isp = "DOMAINNAME.XXX";
document.write('<a href=\"mailto:' + user + '@' + isp + '\">');
document.write(user + '@' + isp + '<\/a>');
// -->
</SCRIPT>
This should work fine if you upload the file to an HTTP server and
load it from there. IE will warn you if you attempt to
document.write() any content into a page when loading the page from
your local hard disk (or a network resource mapped to your computer).
<a href="javascript:void(window.open('XXX.htm', 'Picture',
'width=XXX,height=XXX'))">Text</a>
<a href="XXX.htm" target="Picture"
onclick="
window.open(
this.href,
this.target,
'width=XXX,height=XXX'
);
return false;
">Text</a>

Now regardless of whether the visitor has client-side JavaScript
available or not, they should get a new window (unless there popup
blocker is being overly agressive and blocking user-requested popups
as well, which is certainly possible).

If the user does not have client-side JavaScript enabled or available,
the TARGET attribute should, in most user agents, cause a new
window/tab to be opened.

IE doesn't complain about this code.
<a href="javascript:window.close()">Close</a> to close them.
<a href="#" onclick="window.close();return false;">Close</a>

IE doesn't complain about this code (although it may or may not close
the window, depending on which window you try to do it in and if that
window has history).
What can I do to resolve this? Any thoughts?


Test using an HTTP server and write JavaScript that doesn't cripple
the browser if JavaScript isn't available or enabled.

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq

Jul 23 '05 #5
Jon
DU,

<snip>
You assume visitors have javascript support is enabled. Yes! It only relies on javascript to show the email address, I guess if
someone doesn't like javascript then the user can live without an email from
that visitor - when a phone call will surfice!
You also try to force new windows on visitors. Well I don't insist on the visitor opening the window, this facility is
purely there to allow them to see a zoomed in version of the thumbnail image
they have seen - it their concious decision.
The script to close the windows you created is excessive. Excessive but useful, IMHO

<snip>
There is simple way to permit your pictures without having them blocked
by MSIE 6 or any popup blocker: don't try to force popup windows with
javascript pseudo-protocol (javascript links) which are known to just
create problems. Leave these issues to users themselves.


I see what you are saying about javascript links, except I'm not aware that
they "are known to just create problems".

I was hoping for a useful resolve to my technical issue, not insistance that
I change what is a very useful utility!!

Jon

DU
--
The site said to use Internet Explorer 5 or better... so I switched to
Netscape 7.2 :)
Jul 23 '05 #6
Jon
Grant,

I haven't yet tried this, but it looks spot on, thank you

Jon

"Grant Wagner" <gw*****@agricoreunited.com> wrote in message
news:41***************@agricoreunited.com...
Jon wrote:
Hi there,

In many of my sites I have code like:

<SCRIPT language="JavaScript" type="text/javascript">
<!--
user = "USER";
isp = "DOMAINNAME.XXX";
document.write('<a href=\"mailto:' + user + '@' + isp + '\">');
document.write(user + '@' + isp + '<\/a>');
// -->
</SCRIPT>
This should work fine if you upload the file to an HTTP server and
load it from there. IE will warn you if you attempt to
document.write() any content into a page when loading the page from
your local hard disk (or a network resource mapped to your computer).
<a href="javascript:void(window.open('XXX.htm', 'Picture',
'width=XXX,height=XXX'))">Text</a>
<a href="XXX.htm" target="Picture"
onclick="
window.open(
this.href,
this.target,
'width=XXX,height=XXX'
);
return false;
">Text</a>

Now regardless of whether the visitor has client-side JavaScript
available or not, they should get a new window (unless there popup
blocker is being overly agressive and blocking user-requested popups
as well, which is certainly possible).

If the user does not have client-side JavaScript enabled or available,
the TARGET attribute should, in most user agents, cause a new
window/tab to be opened.

IE doesn't complain about this code.
<a href="javascript:window.close()">Close</a> to close them.
<a href="#" onclick="window.close();return false;">Close</a>

IE doesn't complain about this code (although it may or may not close
the window, depending on which window you try to do it in and if that
window has history).
What can I do to resolve this? Any thoughts?


Test using an HTTP server and write JavaScript that doesn't cripple
the browser if JavaScript isn't available or enabled.

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #7
On Thu, 16 Sep 2004, Grant Wagner wrote:
Now regardless of whether the visitor has client-side JavaScript
available or not, they should get a new window
Some client agents don't even have one window - let alone multiple
ones.
(unless there popup blocker is being overly agressive ^^^^^^

The aggression level of my popup blocker is for me to determine, not
left to some untrusted document author, thank you.
Test using an HTTP server and write JavaScript that doesn't cripple
the browser if JavaScript isn't available or enabled.


Good advice, indeed.
Jul 23 '05 #8
[attributions restored]

DU <dr*******@hotNOSPAMmail.com> wrote:
The script to close the windows you created is excessive.

Jon <jon@SPAM_OFFtheexperts.co.uk> wrote: Excessive but useful, IMHO
Closing a window is a basic function in any windowing environment, and
there is usually more than one standard way to do it. Users who don't know
how to use basic functions of their browsers will only be confused when
various pages imitate those functions in different ways.
I see what you are saying about javascript links, except I'm not aware that
they "are known to just create problems".


If I want to open a link in a new window, I can do it easily (shift-click
works in most browsers). That is, unless the author has tried to open a new
window for me. Then, the only way to open the link in a new window is to
try to open it normally.
--
Darin McGrew, mc****@stanfordalumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp.com, http://www.HTMLHelp.com/

"What is the use of running when you are not on the right road?"
Jul 23 '05 #9
"Alan J. Flavell" wrote:
On Thu, 16 Sep 2004, Grant Wagner wrote:
Now regardless of whether the visitor has client-side JavaScript
available or not, they should get a new window


Some client agents don't even have one window - let alone multiple
ones.


Unfortunately it gets exhausting writing paragraphs on the arguments
against opening new windows. A simple "don't do it" is usually not
sufficient and to do the subject justice requires several paragraphs of
explanation regarding the state of popups and various popup blocking
techniques.

My intent was to repair the most damaged portions of his existing code so
they would function correctly in Internet Explorer under Windows XP
Service Pack 2.

If, prior to my recommendations, he was losing business, and consequently
money, by not supporting browsers which do not support opening new
windows at all, I have certainly not made matters any worse. In fact, I
have made the situation better by including Internet Explorer under
Windows XP Service Pack 2, as well as browsers that do not support
JavaScript, or have it disabled.

Perhaps I should have added a disclaimer regarding the evils of opening
new windows at all, but I had read several prior posts which made points
on that matter, and did not feel the need to repeat them.
(unless there popup blocker is being overly agressive

^^^^^^

The aggression level of my popup blocker is for me to determine, not
left to some untrusted document author, thank you.


I'm not sure what "untrusted document author" you are referring to.
However, in general, I would say that any popup blocker that blocks new
windows that are a direct result of a user action are overly aggressive.
Specifically I would say that any popup blocker that blocks user
initiated popups in such a way as to break code which would fail
gracefully if it were not for the popup blocker are hostile.

Any popup blocker that simply replaces window.open() with a function that
does nothing (or returns an object that appears to be a Window object,
but in fact does nothing) makes writing "safe" code that opens new
windows impossible. And while that may be a desirable outcome, it is
entirely unfair considering that in most user agents a new window would
open as a result of a non-JavaScript link consisting of:

<a href="url" target="_blank">Opens in new window</a>

In any browser that opens a new window as a result of the code above, you
should be able to "safely" substitute the following:

<a href="url" target="_blank" onclick="window.open(this.href,
this.target, '...chrome...');return false;">Opens in new window</a>

It is precisely analogous to the first line, with the difference being
you have at least _some_ illusion of control over the chrome. And in any
cases where you can't directly control the aspects of the chrome you wish
to control, you are no worse off than you would be with the first
example. In other words, if your browser prevents me from removing the
menubar, allows me to provide a size, but not position for, the new
window, I am still slightly better off than using target="_blank" in
providing you with the desired outcome.

A popup blocker that chooses to make the second line completely
non-functional by removing the ability for window.open() to do anything,
but not removing the fact that JavaScript has executed and the link will
now not be followed is hostile. If your popup blocker chooses to disable
user initiated window.open()s, it should do so in a way that does not
cripple script written with an achievable non-scripted fall-back.

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq

Jul 23 '05 #10
Grant Wagner wrote:
<a href="#" onclick="window.close();return false;">Close</a>
Why have a link that goes nowhere? It will only bump the user to the top
of the document in many browsers. Annoying, or perhaps even confusing.
comp.lang.javascript FAQ - http://jibbering.com/faq


Have you read the faq that's in your sig? Specifically section 4.24
dealing with the javascript pseudo protocol?

[quote from http://jibbering.com/faq/#FAQ4_24 ]
<a href="something.html" onclick="somefunction();return false"> where
something.html is meaningful to the non-javascript capable, is nearly
always preferable. Or use onclick on another element so users without
javascript aren't even led to believe it does anything.
[/quote]

href="#" is not meaningful to any user.

--
Brian (remove "invalid" to email me)
http://www.tsmchughs.com/
Jul 23 '05 #11
Grant Wagner wrote:
in general, I would say that any popup blocker that blocks new
windows that are a direct result of a user action are overly
aggressive.
Alan Flavell's point still stands. You can configure your popup blocker
to allow requested popups if you choose. But another user can choose
otherwise. Whether that is "overly aggressive" or not is really not
for the author to decide.
Any popup blocker that simply replaces window.open() with a function
that does nothing (or returns an object that appears to be a Window
object, but in fact does nothing) makes writing "safe" code that
opens new windows impossible.
But surely a link will have some meaningful action if the js window
opener is ignored, right?
<a href="url" target="_blank">Opens in new window</a>


A good browser lets the user decide on new windows. Mozilla Firefox, for
example, allows me to ignore target="_blank" and open the link in the
same window, exactly as I want when I left click or tab-and-enter a link.

--
Brian (remove "invalid" to email me)
http://www.tsmchughs.com/
Jul 23 '05 #12

"Grant Wagner" <gw*****@agricoreunited.com> wrote in message
news:41***************@agricoreunited.com...
I'm not sure what "untrusted document author" you are referring to.
However, in general, I would say that any popup blocker that blocks new
windows that are a direct result of a user action are overly aggressive.


The browser only knows that a user has executed a particular action. It has
no way to know whether the user was made aware that that action would result
in a pop-up. If the user has configured the browser not to open pop-ups,
it's not the browser role to guess whether the user, by virtue of a
particular action, has chosen to make an exception.

Jul 23 '05 #13
On Thu, 16 Sep 2004, Grant Wagner wrote:
The aggression level of my popup blocker is for me to determine, not
left to some untrusted document author, thank you.


I'm not sure what "untrusted document author" you are referring to.


In a WWW context, the reader would be advised to treat any document
author as /prima facie/ untrusted.

Jul 23 '05 #14
Brian wrote:
Grant Wagner wrote:
Any popup blocker that simply replaces window.open() with a function
that does nothing (or returns an object that appears to be a Window
object, but in fact does nothing) makes writing "safe" code that
opens new windows impossible.


But surely a link will have some meaningful action if the js window
opener is ignored, right?


Not in the case of <a href="url" target="_blank"
onclick="window.open(this.href, this.target, '...chrome...');return
false;">Text</a>. If window.open() is ignored or subverted in some way:

<script type="text/javascript">
window.open = function() {
return null;
}

the link does _nothing_. The entire onclick event would have to be ignored
(including the "return false;" portion) for the browser to follow the link
and perform it's default task.
<a href="url" target="_blank">Opens in new window</a>


A good browser lets the user decide on new windows. Mozilla Firefox, for
example, allows me to ignore target="_blank" and open the link in the
same window, exactly as I want when I left click or tab-and-enter a link.


As I said, and I'll repeat:

In any browser in which <a href="url" target="_blank">Opens in a new
window</a> would open a new window, you should be able to replace it with <a
href="url" target="_blank" onclick="window.open(this.href, this.target,
'...chrome...');return false;">Opens in a new window</a> with reasonable
assurance that the link will behave the same, even in the presence of a popup
blocker. If a popup blocker defeats window.open() in such a way that the the
default action of the link is not performed (in your case opening the link in
the same window), it is broken.

This would most likely require the popup blocker to be aware of your desire
to subvert target="...", be aware the window.open() is targeting the target
attribute, and produce the following script:

<script type="text/javascript">
window.open = function (l) {
window.location.href = l;
}
</script>

While some highly configurable popup blockers might be capable of such logic
(or allow custom scripting to perform user-defined actions), it is unlikely
the vast majority of users have the skills necessary to configure their
browsers to handle situations like this.
In your particular browser configuration, <a href="url"
target="_blank">Link</a> does _not_ open in a new window, as a result, I
would expect <a href="url" target="_blank" onclick="window.open(this.href,
this.target, '...chrome...');return false;">Link</a> to result in the same
outcome (or perhaps even open the window, or create a new tab). I would not
expect your popup blocker to break the existing functionality of the link in
an attempt to stop a new window from appearing.

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq

Jul 23 '05 #15
Jon wrote:
DU,
This is not a 1:1 medium.

Who wrote that?
vvvvvvvvvvvvvvv
You assume visitors have javascript support is enabled.

Yes! It only relies on javascript to show the email address, I guess if
someone doesn't like javascript then the user can live without an email
from that visitor - when a phone call will surfice!


I really find you amusing, insisting on the usage of irritating
techniques due to your very limited knowledge about the used media
and its users.
I was hoping for a useful resolve to my technical issue, not insistance
that I change what is a very useful utility!!


Please, dance faster!
PointedEars, F'up2 cljs
--
I wanted to be a monkey, until I found out what they ate...
Jul 23 '05 #16
Jon wrote:
DU,
This is not a 1:1 medium.

Who wrote that?
vvvvvvvvvvvvvvv
You assume visitors have javascript support is enabled.

Yes! It only relies on javascript to show the email address, I guess if
someone doesn't like javascript then the user can live without an email
from that visitor - when a phone call will surfice!


I really find you amusing, insisting on the usage of irritating
techniques due to your very limited knowledge about the used media
and their users.
I was hoping for a useful resolve to my technical issue, not insistance
that I change what is a very useful utility!!


Please, dance faster!
PointedEars, F'up2 cljs
--
I wanted to be a monkey, until I found out what they ate...
Jul 23 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Rick Robinson | last post by:
------=_NextPart_000_0024_01C34D0E.474DFC80 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable I've been through the mysql doc for the C API in both mysql...
4
by: Christopher H. Laco | last post by:
I'm having a problem with the TcpClient that I can only conclude is either a feature, or a complete misunderstanding of the docs on my part. In a nutshell, I'm simply performing the following...
6
by: him | last post by:
All the world aside, Iran alone and on itself has blocked half of the internet, including many "moral" and useful websites, mainly because of its medieval policies. The level of filtering has...
23
by: David McCulloch | last post by:
QUESTION-1: How can I detect if Norton Internet Security is blocking pop-ups? QUESTION-2a: How could I know if a particular JavaScript function has been declared? QUESTION-2b: How could I...
16
by: Jon | last post by:
Hi there, In many of my sites I have code like: <SCRIPT language="JavaScript" type="text/javascript"> <!-- user = "USER"; isp = "DOMAINNAME.XXX"; document.write('<a href=\"mailto:' + user +...
38
by: Emmett | last post by:
I have a simple jacascript that randomizes the background of the top frame of my webpage http://www.duke.edu/~efn. For some reason, my Internet Explorer started blocking the background and...
7
by: David Sworder | last post by:
Hi, I'm developing an application that will support several thousand simultaneous connections on the server-side. I'm trying to maximize throughput. The client (WinForms) and server communicate...
2
by: Sharon | last post by:
I’m writing a thread wrapper for a safe thread termination by using stop event. Whenever the thread stop event is signaled, I want to release the thread in case it’s blocked on Monitor.Enter()...
9
by: Denis | last post by:
Hello, Maybe somebody already solved this task. I need to load JS asynchronously without blocking browser. This means that I do not need to block browser to load/render during loading script. The...
12
by: puzzlecracker | last post by:
is it even possible or/and there is a better alternative to accept input in a nonblocking manner?
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.