Questions tagged [ie7.js]

ie7.js, and later versions ie8.js and ie9.js, are Javascript tools to add missing functionality to IE6 and subsequent versions of Internet Explorer.

ie7.js, and later versions ie8.js and ie9.js, are Javascript tools to add missing functionality to IE6 and subsequent versions of Internet Explorer.

Further information and downloads can be found here: http://code.google.com/p/ie7-js/

30 questions
15
votes
2 answers

ie9-js - has something else rendered it obsolete?

So, everyone knows ie9.js (from http://code.google.com/p/ie7-js/). It seems to work, but it never left beta since the last release in 2010. Obviously, there are some other things that do something a bit similar (such as modernizr, html5shiv, and…
Marcin
  • 48,559
  • 18
  • 128
  • 201
5
votes
2 answers

Does IE7 not fully support javascript's insertBefore method?

I have the following code which works perfect in Chrome, IE8, and FF. However, I get an error when I'm testing it with IE7. Does anyone have a clue what's happening here? function do_replace(s, p1,p2,p3,child_node,syn_text) { reg = new…
user210099
  • 1,199
  • 3
  • 14
  • 24
2
votes
4 answers

new ASP.NET MVC 3 application, browsers considerations

we are building a new MVC 3 application to support our business, timeline is aggressive and plenty of features to implement. I would like to understand if supporting also IE7 instead of only IE8, IE9 and Chrome would slow down development or if in…
Davide Piras
  • 43,984
  • 10
  • 98
  • 147
2
votes
2 answers

jquery: js-cookie in ie7 not working?

hey guys, don't get it... I want to show a bar at the top of my page only if viewed with ie6, ie7 or ie8.
Some Information for users.
matt
  • 42,713
  • 103
  • 264
  • 397
2
votes
2 answers

How to compile dust js server side rendering for IE7

I have an application which uses a lot of dust templates. IE8+ and other modern browsers such as Chrome there are no issues with client-side rendering but in IE7 and below this does not work properly. Is there a way to run the dust.js in the server…
2
votes
1 answer

IE7-js: reapply fixes after DOM changes

I've been using IE7-js for a while and now I need to re-apply the IE fixes after DOM changes (eg. new elements added). How should I do so? I tried with the ie7-recalc.js script, but witouth success.
Andrea Zilio
  • 4,444
  • 3
  • 29
  • 34
2
votes
1 answer

Fancybox2.1.3 not working with Backbone and IE7

I have a situation where I have BackboneJS (0.9.2) and RequireJS (2.1.3) and need to use Fancybox to open some inline hidden content (rendered from an underscore template):
1
vote
1 answer

Instead of rounding them, PIE disappears with the borders

I do not know what might be happening! I took some pictures to try to help you understand ... follows: Internet Explorer 9 Internet Explorer 8 Internet Explorer 7 Code Css -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius:…
ridermansb
  • 10,779
  • 24
  • 115
  • 226
1
vote
0 answers

IE9.js: checked and before pseudo element not working in IE8?

I try using css to open and close my chatbox at the bottom right of a webpage. It works fine in Chrome and Firefox. But when using ie9.js and test on IE 8, the code not run as expected. Script include: and getting a JavaScript error on IE 6 when it reads the…
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
1
vote
2 answers

ie7 cant loop over string with javascript

Anyone knows why this isnt working in IE7 and how I can make it work? var test = "hello"; for (var i = 0, len = test.length; i < len; i++) { alert(test[i]); } or see http://jsfiddle.net/75Cqt/
WIRN
  • 915
  • 1
  • 16
  • 31
1
vote
3 answers

mouseover not working for dynamic generated li in ie7

I have created a menuItems array and assigned it to a div which has an id of “leftMenu”. I have a dynamically generated the UL (user list) and LI and it's append to the div. I have set two attributes “onmouseover”, and “onmouseout” in the…
0
votes
1 answer

Dynamic dropdown in mootools is not getting populated in IE7. Working fine in IE8

I am firing an ajax call to get json response which I am populating in the dropdown. Code is: var ajaxURL = "abc.ajax"; var fireAjax = new Request.JSON({ url: ajaxURL, method:'GET', onSuccess:function(resultjson){ …
0
votes
1 answer

setInterval and clearInterval jquery - stackoverflow in IE7

I have a jquery code that is moving up and down continuously a div containing a list with logos. The animation is repeating within a set interval and is all seems to be working as expected in Chrome, FireFox and IE 9 and 8 (no console errors).…
Vikita
  • 261
  • 6
  • 16
1
2