Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

PNG files do not appear in IE 10

Asked Modified Viewed 6,805 times
R
River66
R
//R66
  • Junior Member, joined since
  • Contributed 33 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
asked
Junior Member

Hi.

Seems like that PNG files do not appear in IE 10

Anyone else experiencing the same phenomenon..?

I use the latest 7.02.07
0 replies

3 posts

J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
answered
Veteran Member

Replace jscript.js inside includes/ folder with this one, jscript.js (right click > save as)
0 replies
R
River66
R
//R66
  • Junior Member, joined since
  • Contributed 33 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

JoiNNN wrote:

Replace jscript.js inside includes/ folder with this one, jscript.js (right click > save as)


Thanks for the quick response and fix .. seems to work well //R66
0 replies
— 2 months later —
T
thethinkingman
T
  • Newbie, joined since
  • Contributed 3 posts on the community forums.
  • Started 1 thread in the forums
answered
Newbie

I still needed to support IE6 which needs the correctPNG function. I added the following to includes/jscript.js

function getIEVersion(){var a=navigator.userAgent;var r=/MSIE\s?(\d+)(?:\.(\d+))?/i;var m=a.match(r);if(m!=null){return {major:m[1],minor:m[2]};}return {major:"-1",minor:"-1"};}


Then replaced:
navigator.appName=="Microsoft Internet Explorer"&&navigator.userAgent.indexOf("Opera"wink

with:
navigator.appName=="Microsoft Internet Explorer"&&getIEVersion().major<=8&&navigator.userAgent.indexOf("Opera"wink
Edited by helmuth on 17-10-2013 15:27,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

R
R
//R66
  • Junior Member, joined since
  • Contributed 33 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
J
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
T
T
  • Newbie, joined since
  • Contributed 3 posts on the community forums.
  • Started 1 thread in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet