|
Hello,
I have a big problem with IE8 where I use the jQuery framework.
What works on Firefox, it doesn't work as well in IE8. I am not even checking IE7 :).
Basically, I have simple animations that show/hide div layers and also that move top/down - left...
Started by dsuser on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Queue:true, duration....
Though i'm not sure where to add the return false, can you take a look be a selector or a jQuery object too .
If you hit that issue in IE8.
First, the IE8 behavior on you describe on "#moveContact" is for normal mode only.
|
|
Things finally looking better in IE8 and Chrome.
However, Font Squirrel Fonts not working at all in Firefox.
Any ideas ? ? ?
www.propertieswithstyle.com (not all pages complete yet)
Also, can someone check on how my two columns merge together or apart...
Started by R Schreiber on
, 11 posts
by 5 people.
Answer Snippets (Read the full thread at sitepoint):
Http Browsers */
Firefox has a problem....
Originally Posted by markbrown4 Firefox uses the WOFF format which you don't have on your site.
Http://www.propertieswithstyle.com.
Firefox uses the WOFF format which you don't have on your site.
|
|
On Thu, 5 Mar 2009 17:46:27 +0100, "BS82" <simNONSPAMMAREBASTARDObus82@tiscali.it
FF e IE8 renderizzano perfettamente questo codice se uso il child
html background: transparent url(../images/carrello.jpg) no-repeat top;
display: block;
height...
Started by BS82 on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
:46:27 +0100, BS82 ha scritto:
E` un bug di IE6 che probabilmente hanno replicato nel compatibility.
|
Ask your Facebook Friends
|
Hello,
Can anyone help me with this IE8 problem, my app is work fine in FF but Ajax Functionality is not working in IE8
function createXMLHttpRequest() { if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari return new XMLHttpRequest...
Started by luvboy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { xmlhttp = false; } } } return xmlhttp; };
Which tests for the new"); } catch (e) { try { xmlhttp....
|
|
Like everyone else ;), I need to test my code on IE6 and IE7. Now IE8 has some great tools for developer, which I'd like to use. I'd also like to start testing my code with IE8, as it will soon be released.
The question is: how to run IE6, IE7, and IE...
Started by Alessandro Vernet on
, 34 posts
by 33 people.
Answer Snippets (Read the full thread at stackoverflow):
You can run IE8, IE7, IE6, Firefox looking right in IE....
Can see how your page looks in IE6, IE7, IE8, Firefox, and Safari, even if you don't have those website browser compatibility
I use http://www.spoon.net/browsers .
|
|
I am creating a menu system using a UL/LI structure. I'm trying to use sibling selectors for hover/show-sub-menus.
I'm using this;
#MainMenu li.Sel ul li.HasSub a:hover+ul { display: block; }
The UL structure would be something like this;
<ul id='MainMenu...
Started by Joel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Element ....
A selector of the form "E+F" matches element F when it immediately follows sibling element E in the document tree, ignoring non-element nodes (such as text nodes and comments).
Whitespace is not significant.
Simple selectors.
|
|
The example below is a simple example of an iframe which uses window.parent.[turn designmode on] (this works). In FF all is well, but in IE8 (surprise surprise) any selection made is lost when you click out of the iframe. This totally negates the use ...
Started by Johnny Darvall on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
They can for the selection method or is ....
F.document.execCommand("redo",false,null) createEventHandlers(); } catch(e) { setTimeout("HLC_DM",200) return in the iframe and works for ie6, ie7 and FF but for ie8 it adds then at the start.
|
|
Posted 05 February 2012 - 03:11 AM
ST,
Thanks for asking about how things are running on my computer. I would say better.
1. The excessive use of resources by "ping.exe" seems to have disappeared. Right now "ping.exe" is not even listed in Task Manager...
Started by krazykat on
, 4 posts
by 1 people.
Answer Snippets (Read the full thread at bleepingcomputer):
Space Free | Partition Type: NTFS
Drive E: | 215.55 Gb Total Space | 167.43 Gb Free Space | 77.68% Space:\Program Files\Mozilla Firefox\uninstall\helper.exe" /HideShortcuts [2012/01/29 07:55:53 | 000,834,800\InstallInfo\\ShowIconsCommand....
|
|
For (var i = 0; i < 5; ++i) { var xhr; if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else if (window.ActiveXObject) { xhr = new ActiveXObject("Msxml2.XMLHTTP"); } xhr.open('GET', '/Test/LongOperation?p=' + new Date()); xhr.send(''); }
...
Started by Roman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Function() { $.each(rq, function(i, xhr) { try { xhr.abort(); } catch(e) { $debug.fail('failed to abort xhr.
|
|
The following code snippet works in FF but not on IE8. Prev is returning correct element but not as an object that supports val(). Hence, I can not run .val() on it.
<input type="hidden" name="data[De][1]" value="1" id="De1" /> <td class="dr_...
Started by AA on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
That is why I use this function to get the same event target... .
You're missing the closing paren on your call to live():
$(".remove_dr").live('click', function(e using live events I've observed that there is a difference for Firefox and IE.
|