<-- Not a Web Developer 🙁
We have an Intranet site, which works fine and well under IE6. However, I've noticed that with IE7, the pop up windows no longer work. You click on the link, and nothing happens (no notifications, errors, nothing). Here is an example of one of the links that do not work:
<a href='javascript:FileOpen("J:/DATA/Drawings/drawing.pdf")'>A</a>
There is also the following script included in the .asp page:
<SCRIPT language="JavaScript">
<!--
function FileOpen(MyLocation)
{
FileWindow = window.open("file:" + MyLocation)
}
if (document.images) {
EditOn = new Image();EditOn****** = 'images/Button_Edit.gif';
EditOver = new Image();EditOver****** = 'images/Button_Edit_Over.gif';
EditDown = new Image();EditDown****** = 'images/Button_Edit_Down.gif';
}
function SwapImage(FieldName, ImageName){
if (document.images)
document.images[FieldName].src = eval(ImageName + '.src');
}
//-->
</SCRIPT>
Anyone familiar with JavaScript that can see what's wrong?
Or would there be a setting somewhere in IE7 that would be preventing them from opening (note: I have the pop up blocker turned off, and no other pop up blockers installed).
TIA...
We have an Intranet site, which works fine and well under IE6. However, I've noticed that with IE7, the pop up windows no longer work. You click on the link, and nothing happens (no notifications, errors, nothing). Here is an example of one of the links that do not work:
<a href='javascript:FileOpen("J:/DATA/Drawings/drawing.pdf")'>A</a>
There is also the following script included in the .asp page:
<SCRIPT language="JavaScript">
<!--
function FileOpen(MyLocation)
{
FileWindow = window.open("file:" + MyLocation)
}
if (document.images) {
EditOn = new Image();EditOn****** = 'images/Button_Edit.gif';
EditOver = new Image();EditOver****** = 'images/Button_Edit_Over.gif';
EditDown = new Image();EditDown****** = 'images/Button_Edit_Down.gif';
}
function SwapImage(FieldName, ImageName){
if (document.images)
document.images[FieldName].src = eval(ImageName + '.src');
}
//-->
</SCRIPT>
Anyone familiar with JavaScript that can see what's wrong?
Or would there be a setting somewhere in IE7 that would be preventing them from opening (note: I have the pop up blocker turned off, and no other pop up blockers installed).
TIA...