internet-explorer-8

Extending div's height beyond its max height from javascript

I have a div in an user control, whose max height is set to 400px in css. This user control is used in many of aspx pages in my application. I am trying to increase the div height to 500px dynamically in JavaScript for only one page, but it doesn't work. The div in user control always takes only the 400px (max height set in css) and not...

Div scrollbar issue with IE8

We have parent DIV and inside parent div we have following structure. Div Main table1 table2 Child div Div Main end Now our child div have overflow:auto. So when scrollbar comes and we scroll it, it also scroll table1 and table2. This happen only with IE8. Works fine with previous version of IE. There is no overflow property ...

jQuery working as expected in IE8 but not in Chrome... need someone to look over my code...

Hey, I have recently been updating a site so that it looks nearly as good in IE8 as it does in Chrome. I have managed to get the corners applied correctly, but if you take a look at http://clarkeyboy.zxq.net/test_longcatalogueitems.htm you will notice that the catalogue rows appear as expected in IE8 but not in Chrome. In Chrome they ap...

Conditional HTML to target ie8 quirks mode

I have a page that's not displaying correctly in ie8 quirks mode. If I want to create some CSS to target just that mode, but not ie8 normally, what would be the conditional HTML? For example, if I wanted to just hit ie8: <!--[if IE 8]>    awesome hacky stuff goes here <![endif]--> So what is the IE 8 part for ie8 quirks? ...

[jQuery] .hover not working in IE8

Hi, I have this css code that works fine in Chrome and Firefox but not in IE8: <script type="text/javascript"> $(function(){ $("#button").button(); $("#radioset").buttonset(); $('#ciao,#dialog_link, ul#icons li ').hover( function() { $(this).addClass('ui-state-hover ui-corner-left '); }, function() { $...

IE CSS Bug: background-color: transparent behaves differently to background-color: (any other colour)

Hi all I have been struggling to find out why this rollover is not behaving as it should in IE8. Go here : http://baked-beans.tv in IE8, you'll see that the rollover only works on the lower half of the thumbnails. Btw, this is not activated by an tag but by a ":hover" for the . What I cant figure out is why it works on only the low...

word-wrap:break-word not working in IE8

Can anyone please tell me why word-wrap: break-word will not work in IE8? I have this working in other browsers but IE8 refuses to listen despite reading this post on their site? http://msdn.microsoft.com/en-us/library/ms531186(VS.85).aspx Thanks ...

IE8 Css background-position:right is not working fine, as it shows an extra line to right, have nay one faced this issue before?

this happens when i set my background-position to right in IE8 Only... you can see that in the following URL : http://www.scrapingweb.com/quote.html (Contact Us tab) ...

document.width - IE Bug

I am trying to set the width and height of a mask behind a modal window. I am using $(document).width() and $(document).height(). Works great in FF and Chrome but IE adds about 25px to each and I end up with scroll bars? What am I supposed to use that is cross browser compatible? I am using IE8 btw, but I want it to work down to 6 or...

Display: Table-cell not setting height constantly xbrowser (ie8 table bug)

So I'm setting up a page with a bunch of dynamic content. I'm organizing this within a table. There are three rows, each with a single cell. The top part works as a fixed header, since I've set the top cell's height. The bottom cell works as a footer, since it also has a static height. The table's total height is set to 100% and the midd...

Optimize image dragging in IE7/8

Hi, If you display an image within a div in FireFox, it can be dragged about very fast. Doing the same thing is slow in IE 8 and very slow in IE 7. Is there a way to improve this by tweaking some settings or changing DOC type signatures? Thank you ...

javascript dom inspection code doent work on IE

Hello, this question is for the JS experts out there. I use this next piece of code to get all the JavaScript function names which exist under the dom root. for(var x in window){ val = ""+window[x]; if(startsWith(val,"function")){ //only functions alert(val) } } While this code works perfectl...

jQuery .submit for autologin works in FF,Chrome... not IE

I have an internal suggestion box application where all users can have the same username and password .. so I'm doing an autologin with a jquery form submit.. this works great in FF and Chrome but in IE.. it populates the values in the user/password form fields.. does the submit.. and then just does it again over and over.. ( the appl...

zend, php session, jquery ajax problem

Here is what happens to some users of IE8 when using the website i am responsible for: person logs in, credentials are verified, zend auth is created. After login, user is redirected to the default page. the default page has 5 ajax request that start on document ready. The ajaxes somehow don't have the php session in the request and r...

Use javascript to find the current url from address bar in IE8

I change the bookmark in the url when the page is loaded. That way, when the user clicks the back button of the browser, the browser will not actually go back, but will instead change the bookmark. I can then detect the bookmark change and do something else as a reaction to the user pressing the back button. My problem is to find the cu...

aggressive caching by Ie8

IE8 is caching a lot of data. My application is working fine in other browsers. IE8 even cache data which are submitted using post method. I try to append a random number in url, set no cache header in pages but all in vain. I am so frustrated by this issue. I am not using ajax. This is normal web application using spring mvc. can anyone...

Under What Circumstances Would Javascript Performance be Worse in IE8 than IE7?

I work for a company that built interactive seating charts using Javascript. Here's an example: http://seatgeek.com/event/show/457624/miami-dolphins-at-new-york-jets-2010-12-12/. In many ways they mimic the functionality of Google Maps. We're dealing with an odd problem--performance for the maps is fine in all browsers except IE8. I'...

CKEditor not getting user input after initial load in Internet Explorer

So this works in Chrome/FireFox on Windows and Linux, but IE8 on Win7/WinXP fails to behave as expected. I'm using CKEditor with the jQuery adapter. I set up the editor initially like so: $(document).ready( function(){ CKEDITOR.config.height = 400; // i.e. <textarea id="msgtext"></textarea> $('#msgtext').ckeditor(); ...

Help with IE8 iframe's style affected parent page

I hava a page that includes an iframe, and the iframe's style affected parent page when mouse move out, what's going on? ...

How to add contentEditabled div with prototype in IE8

Hi I have the following piece of code: <form action="/fake" > <div id="root"> </div> </form> <script type="text/javascript"> var root = Element.extend($("root")); function addTextControl() { var textCtl = new Element('div', { 'contenteditable': 'true'}).update("Next page"); root.appendChild(textCtl); ...