views:

64

answers:

3

Hello. I'm writing a web-application for the first time. Everything was tested in Chrome. And now i begin testing in IE8 too and found that my application have problems with positioning and jquery script. Here is a problem: when i change something in css (for example positioning), my web page in IE8 isn't change. I pushed refresh button more than 10 times. What is it? (i checked - all files i uploaded to server). here is my css: http://www.abcpatent.com/software/css_style.css

Next: I use buttons to move through the master in my application. From 1 point this buttons refuses to work and fonts become standard.Here is my jquery code: http://www.abcpatent.com/software/script.js

Thanks in advance.

+1  A: 

Hitting the refresh button reloads the page, resetting everything that has been changed by any javascript.

Make sure your objects are positioned properly. The default is position:static (CSS). As far as I know in that mode position properties don't work. You have to use fixed, absolute or relative.

Here's what I'd do:

  • Check if the Javascript doesn't contain any errors.
  • Check your HTML / CSS
Georg
thanks for the reply. Seems to be my ie8 is bugged. On another computer on every page refresh everything is changing
dsplatonov
Ok, this is going to sound awfull, but..Have you rebooted your computer yet?Might be a problem with your IE8 cache or something.I've had similar problems with all browsers, and for windows a reboot sometimes fixes it
Norbert de Langen
+1  A: 

Try clearing IE cache. I had a similar problem (with FF). Didn't really find the cause, and it doesn't seem to be really highly reproducible (happens with some scripts and not with others...)

Anyway, look here http://stackoverflow.com/questions/3421717/jquery-and-script-caching

nico
seems my ie8 can update information every 15 minutes.
dsplatonov
A: 

On your IE browser window, look at the bottom left corner of the browser. Do you see a yellow triangle? If so, click that yellow triangle and see what the error message is.

user279521
There is no yellow triangle :(
dsplatonov