1
vote
2answers
35 views

event.preventDefault in IE 10

I am submitting a form and I want to prevent the submit action until I do a few other actions like showing a progress bar for file uploads. I set up this code based on SO questions such as ...
0
votes
1answer
19 views

Focus being lost behind nav bar when tabbing from bottom to top of page

For our intranet site we're using the bootstrap nav bar that stays in a fixed position at the top of the browser. On this particular page, the use is going to want to tab horizontally through two ...
0
votes
1answer
37 views

Getting an Error Code: 0 in only IE for javascript file

Im using a Drupal 7.22 installation for my website. I keep getting an error in IE for one of my JS files. The error in IE states Line: 32 Error: Not implemented This issue only occurs in ...
0
votes
3answers
65 views

Webpage renders blank in IE [closed]

I'm here today about having cross-browser problems. My code renders on Chrome,Firefox perfectly however, it renders a blank page on IE. Whenever I debug in IE, there is an error that is triggered on ...
0
votes
1answer
35 views

make two column layout having the same height

I used jquery and css to create a 2 column layout. One column is with div main-content, the other is sidebar. The jquery code is var divone = jQuery(".main-content").height(); var divtwo = ...
2
votes
1answer
48 views

jQuery Counter Function not working in IE < 8

I have a simple piece of code which I'm running to increment a counter by 1 repeatedly until it reaches a certain amount. The code operates fine on Chrome/FF/IE9+ but on IE7/8 it gets to £1.80 and ...
-4
votes
0answers
35 views

Bootstrap wrong floating in IE 8 [closed]

I have a problem with bootstrap in ie8. Look at the following site: http://www.gedingstatt-zams.at/ And then look at this site in ie8. The containers on the left (span4) are not all floated the ...
0
votes
1answer
39 views

CrossDomain calls in IE

A request is fulfilled in all browsers except IE. Practical answer to this problem is not found. (If you do not swear bad looking). What I need to change or add? I Used window.XDomainRequest, but it ...
0
votes
0answers
32 views

jquery .blur() not working in IE9

I have a html5 page and when it loads in IE9, I am getting 2 focuses on the page. One on a text box (when I click on the text box) and another on a button (which is present when the page loads). Is it ...
0
votes
0answers
17 views

jquery ui selectable ctrl+click doesn't work in IE<9

I have a tree of fields and I want to be able to multiselect using ctrl+click. I am using ui-selectable and this all works in Firefox, Opera and Chrome but does not work in IE<9. Has anyone ...
0
votes
2answers
84 views

IE 8 ignore <br> or <br /> tag

I have something like this These column's content(the middle box of each columns) will be generated from the server so I don't know how many lines they have. This design will repeat in many pages ...
2
votes
0answers
26 views

IE9 and lower doesn't sends request body on AJAX call to a different domain

I tried everything I found on Google to make it work, but without a success. I'm trying to call an HTTP request to a server on a different domain. On all browser it works, even on IE10. But, on IE9 ...
0
votes
0answers
32 views

jQuery sort removes element innerText

I was happily writing a widget, when suddenly IE (7-9) ruined my day. Widget at some part hides a select box, makes a div, ul inside and fills it with li according to select options. Also my widget ...
1
vote
1answer
26 views

Jquery AJAX call for XML file working in FF but NOT in IE and Chrome?

Recently I am working with a bug regarding XML file retrieve in "IE and Chrome". Well, I used Ajax GET call for the same and it works fine in FF but does not work in IE and Chrome. Lets see what ...
0
votes
1answer
47 views

call back jquery function in IE, 8, 7 browsers

I have jquery plugin and that is working fine for all browser including IE 10 and IE 9. I have HTML form, one of its drop down value is generating dynamically and values are coming from jQuery. I ...
0
votes
1answer
35 views

Bootstrap input validation in IE

Bootstrap allows one to specify an input as required, as well as defining a data type & required pattern. Sadly, this doesn't work in any version of IE prior to IE 10. Does anybody know of a ...
0
votes
2answers
24 views

IE8 support for HTML custom character entity code “&#x25B6;” (block right arrow)

I am using HTML character codes for block right arrow in my buttons. The code is very simple: <a href="#" class="button aqua">Details &#x25B6;</a> The block arrow looks like this: ...
0
votes
0answers
38 views

How do I solve the object Object error from jQuery/Javascript in Internet Explorer?

Printing to the browser window is the text [object Object] in Internet Explorer whenever I lick on anything that uses jQuery. This isn't happening with any other browser. I'm not sure how to solve ...
0
votes
1answer
20 views

Getting IE to render doc ready function in jQuery

I'm having trouble getting all versions internet explorer to render my jQuery code. It work wonderful in FF, Chrome, Safari and Opera. The code is at the bottom of the html file right before the tag. ...
1
vote
1answer
38 views

JQuery Clone does not work on chrome but works in firefox

I have been trying to get my jsfiddle to work Fiddle Link to work for a while now and I figured out why it is working in firefox, but not in Chrome or IE, but I don't know the solution to fixing it ...
1
vote
2answers
26 views

Setting window.onbeforeunload to undefined in IE8 causes" not implemented error

if(!$('fieldset.quote-step4').hasClass('show')) { window.onbeforeunload = function() { return "Are you sure you want to leave the quote request page? ...
0
votes
1answer
36 views

Underscore.js template throwing error in ie8 in _.each() function

I'm using underscore.js to render JSON data http://pastebin.com/WrUfT1Z4 into a template. It works fine in Firefox, Chrome, Safari, IE9 + 10, but throws an error in ie8. "SCRIPT5007: Unable to get ...
2
votes
3answers
39 views

JQuery .html() function seems to cache unecessarily in IE

I have this small problem with my MVC program, when run with IE: I have a JQuery function which goes to a controller to get a partial view, which is loaded into a destination <div> element. ...
0
votes
0answers
54 views

jQuery doesn't work in IE7, IE8 and IE9

I have this code, is a styleswitcher that changes an @import CSS depending on the resolution. It works great in Firefox and Chrome, but not in IE (IE7, IE8 and IE9). I have cleared chaché, validate ...
-1
votes
0answers
64 views

HTML file input “custom” style: null value

Ok, so I'm basically getting the same problem as this SO post. Using IE 9. (I'm only looking at IE for this issue, not interested in other browsers) I have a file input field, hidden (set to absolute ...
0
votes
0answers
24 views

Accordion Jitter and Displacement in IE with .animate()

I'm building an animated jquery accordion that uses 3 panels, each at 33.33% of the container's width. When a panel is hovered over, it expands to 66.66% of the container's width and the other two ...
0
votes
0answers
18 views

When touch events are enabled in Modernizr it crashes IE8 in XP

I have a very stripped down version of Modernizr 2.6.2 (latest) with only touch events enabled. It crashes IE8 on page load/refresh. Tests i've done to narrow it down Good: Page load without ...
0
votes
0answers
35 views

body onmousemove event Internet Explorer 8, 9, 10

I'm trying to fire off a javascript function using body onmousemove="resetTimers()", which works teriffic in Chrome and Firefox, but does not work so well in Internet Explorer. I wrote to the ...
1
vote
1answer
57 views

The google chart code doesnt work in ie 8(XP)

I am working on SugarCRM framework, I give a call to html file in an iframe. The iframe has google chart api called. It loads in all other web browsers but not with ie8 Please let me where I am going ...
2
votes
1answer
72 views

jQuery is not working in my Facebook Application in Internet Explorer - Access is denied

Just spent about 5 hours sorting out this issue, so I thought sharing how I overcame it would be helpful to someone and save them some time (it seems to be a pretty recent fix - 9 hours ago at the ...
1
vote
0answers
45 views

MouseEnter behaving like MouseOver in Internet Explorer

I am using the JQuery mouseenter listener, to listen for an event whenever a mouse enters over a panel. $(this.outletSelectorPanel).mouseenter(function(event) { console.log('in'); while ...
0
votes
1answer
24 views

jQuery.support.ajax returns true even if XMLHTTP support is disabled

I want to detect if AJAX is disabled in the browser. I am using jQuery.support.ajax to detect is AJAX is disabled. But, in case of Internet Explorer 8, even if Enable native XMLHTTP Support is ...
0
votes
2answers
29 views

JavaScript runs in MSIE9 after console opened

This question is a follow-up to this discussion: Why Javascript only works after opening developer tools in IE once? Please see this fiddle that shows that the console.log is no longer an issue in ...
2
votes
2answers
81 views

Best way to detect <= IE10

What's an up-to-date way for detecting IE? conditional comments don't do IE9, IE10 modernizr feature detection doesn't help here, because the reason is external (IE bug in a mapbox map I want to ...
0
votes
1answer
28 views

jquery event.preventDefault() issues with IE 8

In my jquery autocomplete select function, I need to use the event.preventDefault() method to prevent the default ui.item.value from populating the input text box the autocomplete is wired too. This ...
0
votes
0answers
24 views

Facebook app has redirect loop with internet explorer 9

I am able to get my app to work in Chrome, Safari and Firefox but in IE9 (Others not tested) it constantly loops. I am unable to determine why this occurs. The javascript console did not appear to ...
0
votes
0answers
19 views

window width changes when inspector open

In Chrome (on windows) and IE9 when I have the inspector open the width being returned by $(window).width() varies. The width it returns when the inspector is closed is incorrect and causes my divs ...
0
votes
1answer
74 views

how to convert xml into JSON

I have data coming in XML file, and initially i was using jQuery Ajax function to read and process data in XML file... whole functionality works perfectly until i have tried on IE 9 browser and have ...
0
votes
1answer
59 views

addClass removeClass not working in IE..!

jQuery functions addClass and removeClass do not work properly when I use them to change the appearance of a div tag in Internet Exploer (IE). However, they work fine in other browsers. Here is ...
0
votes
0answers
16 views

rotated div is not responding with jquery click bindings

Hi I have used the following IE specific div rotation css. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); Text in the div is not getting aligned to center and I have a JQuery ...
1
vote
1answer
36 views

jquery ui datepicker Internet explorer css issue

I've been using the jquery ui datepicker as an event calendar and it works great in Firefox and Chrome. However, it does not work correctly in IE 8 and 9. What should happen is the selected dates ...
0
votes
1answer
25 views

How do cross domain requests work in IE8?

How do cross domain requests work in IE8? The target request is to http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true_or_false I ...
2
votes
1answer
132 views

IE Doesn't run remote JS properly but local runs fine

My page works in every browser except in IE 10. When I run this page locally in IE 10 there seems to be no problem whatsoever, only when I open the page remotely with IE 10. The JavaScript is ...
0
votes
0answers
25 views

Lightbox_me issue in IE9

I am having some issues with https://github.com/buckwilson/Lightbox_me/blob/master/jquery.lightbox_me.js plugin in IE9. I get access denied error for this line 30: $iframe = $('<iframe id="foo" ...
0
votes
0answers
20 views

IE8 JQuery Form Submission

I am trying to submit a form using the jQuery .submit() method. It works in every browser but IE8 standards mode, and of course this is the browser I have to support. Here is my code: ...
0
votes
0answers
37 views

Alternate solution to .prop('files').length for IE8?

Since ".prop('files')" is not supported, is that an alternate way to handle this with IE8? if($('.safecracker_file_input input').prop('files').length == 0) { }
0
votes
1answer
25 views

JQuery Dialog IE issue

JSFiddle Please check above JSFiddle link for running code. I am having issue in JQuery Dialog in IE. My guess is the issue is because of multiple forms or divs. I have my code as per below: ...
2
votes
1answer
65 views

JqueryMobile multiple datepicker in a popup doesn't work on IE

I'm facing an issue when trying to use jQuery mobile datepicker on input type="date" on Internet Explorer for windows phone. I load the datepickers by using the Modernizr library like this : ...
0
votes
0answers
25 views

In IE8, jQuery can't parser Width attribute in XML

I have a problem when I upgrade jQuery v1.10.1. I have a xml like this: <?xml version="1.0" encoding="utf-8"?> <Profile Version="1.23"> <Object Width="100" Height="100" /> ...
1
vote
1answer
35 views

Custom jQuery plugin undefined inside click event in Internet Explorer

When adding your own custom plugin, and then trying to use that plugin inside a click event, IE (or at least IE8) says that function is undefined (the error message is "Object doesn't support this ...

1 2 3 4 5 81