Link to home
Start Free TrialLog in
Avatar of jeremyBass26
jeremyBass26Flag for United States of America

asked on

IE Version 7.0.5730.11 acting up but IE Version 7.0.5730.13 acting right... ???

Hello, so here is a related question for this
https://www.experts-exchange.com/questions/23575035/Please-confirm-error.html
IE Version 7.0.5730.11 acting up the float is not working....  but IE Version 7.0.5730.13 acting right...
Any one have an idea on how to solve this?

I think It's in the float.js
the site area is here... thanks for the hehlp on this...
https://www.sjrmc.org/DoctorDirectory/
float.js.txt
float-w-img.js.txt
Avatar of Lolly-Ink
Lolly-Ink
Flag of Australia image

I am using IE Version 7.0.5730.11 and the page appears correctly. Have you tried closing IE, clearing the cache and loading the page again?
Avatar of jeremyBass26

ASKER

you get the float? when you roll over the links? could you send a screen shot of it... thanks for the help
Sorry. I was looking at the wrong thing. My mistake.
? so you too do not see the float, "tool tip"?
Looking at the generated div tooltip (below), it is appearing outside the display area. What's the reason for this code, where xOffset = 1415? :
.css("top",(e.pageY - xOffset) + "px")

<DIV id=tooltips style="LEFT: 562px; TOP: -1203px">Currently there are :<BR>9 Doctors in<BR>Anesthesia</DIV>

Open in new window

well if that is the cause then this is the reason....
https://www.experts-exchange.com/questions/23570385/The-most-accurate-way-to-get-mouse-location-for-jquery.html
want to get both lol thanks fir the help
side note though.. It's throwing an error in IE7.0.5730.11 were in FF, IE6, and IE7.0.5730.13 it does not... I was think there was a scripting issue...
Perhaps your problem is that pageX and pageY may not be supported by Internet Explorer. At the start of each function that tries to use e.pageX and e.pageY, you could have these statements:
   e.pageX = e.clientX + document.body.scrollLeft;
   e.pageY = e.clientY + document.body.scrollTop;

Open in new window

well... it seems to be supported in IE7.0.5730.13... I will try your idea in the moring as this pc has IE7.0.5730.13 and my other prodution pc is the one with IE7.0.5730.11...

is that a better way anyways on how to set the x y ?  The whole needing a Offset is not good as is i add to the list or make the wind go from 800 to 1600 the offset is wrong...

thanks again for the help here...
jeremyBass
ok ... so I think I may know way in IE7.0.5730.11 the float is not working....

if i put
   e.pageX = e.clientX + document.body.scrollLeft;
   e.pageY = e.clientY + document.body.scrollTop;
 in the } else if (ie6){ of the float script (which was by accident) it shows an error in IE7.0.5730.11 of 'e' being undefined on line 106... e of e.pageY = e.clientY + document.body.scrollTop;

thats good in a way because the to me means the issue is that

var agent= navigator.userAgent.toLowerCase();
var ver = parseInt(navigator.appVersion);
var ie = agent.indexOf("msie")>=0;
var ie6=ie && agent.indexOf("msie 6")>=0;
var ie7=ie && agent.indexOf("msie 7")>=0;
var ff=!ie && agent.indexOf("mozilla")>=0;
var ff2=ff && ver==4;
var ff3=ff && ver==5;
if (ff3){
} else if (ie6){
} else if (ie7){
};


all that is not being respected in IE7.0.5730.11 but is in FF, IE6, and IE7.0.5730.13


Ideas on that... I don't know how to fix that yet... but that seems to be the root of the evil here.... thanks for the help on this...
jeremyBass
ASKER CERTIFIED SOLUTION
Avatar of Lolly-Ink
Lolly-Ink
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
got ya.. i'll have try that in the morning.. thanks
This was it ... right on the money.  thanks for the help... If you could please... Would you take a look at https://www.experts-exchange.com/questions/23593295/Get-Mouse-Position-for-a-on-hover-in-jquery.html

No one has responded to the other version of this and the Moderators said I needed to rewrite the question, and i fear that wouldn't help... never know... thanks again for the help here...