Hi,
Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers.
Thanks.
Hi,
I've got a page full of links to another page with anchors on the end (like this: index.html#anchor). On the page they point to, I have a script that is supposed to read where the anchor points to in order to display something.
On firefox it works perfectly, But I've noticed that IE seems to remove the #anchor from the end of the url, so the script can't grab the text. Is there a way around this, without any server side code?
I use IE7.js but it doesn't have CSS3 support. I use jQuery always in my projects.
What is the best lightweight way to give all CSS3 selectors and properties support to IE 6,7,8?
I'm not asking for HTML5 support only asking to give CSS3 support in as much as light on performance way.
Hello All,
I am facing ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken) error when I am using IE for form submit but it works fine wih FF and Chrome.
Please help me .
Thanks
MJ
jsbin for reference:
http://jsbin.com/edago3/5/
When viewed in any other browser, the toggler works as you would expect it to. However, in IE (I'm using 8), you can only contract the currently expanded sub menu, and then you get undesired results once it is closed.
I am displaying the value of document.body.scrollTop in the status bar while moving the mouse. The value is always 0 in IE. Why is always 0? Is there another way to get how much the scroll bar has moved?
I'm inexperienced with CSS, and I'm having a problem with a breaking menu on a site I'm working on at www.quickcms.ie/marywrynne/index.html. It works fine in Safari/Chrome and Firefox, but it's not working in Internet Explorer.
Can anyone suggest steps I can take to fix this?
Hi,
I use TinyMCE and it works fine on FireFox but it shows weird icons on IE 8.0.
As you can see, forecolor and backcolor icons are repeated. This doesn't happen on FF.
Has anybody seen this? How do I fix this?
Sam
When converting PSD's into html or even html5 and css, how much more difficult is it to round the corners and make those corners consistent across all browsers especially IE. Assuming the corners were rounded with code not images.
I am having a problem getting a RegExp with a variable to work in IE. It works fine in firefox:
wordChar = word[i]
var expr = new RegExp(wordChar,"i")
var hold = expr.test(input[i])
Not sure how to go about fixing this.
I'm trying to convince a page that it is the window.top even though it is in an iframe.
In FF you can do
window.defineGetter('top', function() { return window});
in Webkit (Safari/Chrome) you can simply do
window.top = window
but in IE none of those methods work. Anyone done this before?
Hi,
Javascript is running extremely slow on IE on some pages in our site.
Profiling seems to show that the following methods are taking the most time:
(Method, count, inclusive time, exclusive time)
JScript - window script block 2,332 237.98 184.98
getDimensions 4 33 33
eh 213 32 32
extend 446 30 30
tt_HideSrcTagsRecurs 1,362 26 26
String.split 794 18 18
$ 717 49 17
findElements 104 184.98 14
What does "JScript - window script block" do?
We are using jquery and prototype.
Thanks,
Some sites that I am fetching data from are returning UTF-8 strings, with the UTF-8 characters escaped, ie: \u5404\u500b\u90fd
Is there a built in cocoa function that might assist with this or will I have to write my own decoding algorithm.
I'm seeing an issue with our web application. We have a few wave files which we can play (like ding.wav) and we have attempted to pre-load wave files but using Fiddler we're seeing that the WAV files are never cached like (js and css and image files). We always see an HTTP 200 instead of an HTTP 304.
Any ideas on how to tell IE that it should cache wav files?
We're inserting a div:
<EMBED SRC='ding.wav' AUTOSTART='FALSE' HIDDEN='TRUE'>
When I click the start button (with or without debugging) in Visual Studio 2005, it launches the stand alone IE. My default browser in VS is set to the internal one. Is this normal behavior?
When I do "View in browser", it does launch the internal one.
I am doing something like this in javascript to print a section of my page on click of a link
function printDiv() {
var divToPrint = document.getElementById('printArea');
newWin= window.open();
newWin.document.write(divToPrint.innerHTML);
newWin.print();
newWin.close();
}
It works great in Firefox but not in IE.
Could someone please help
Very strange, I have a list of products. When a user clicks on an the image it opens up a new IE window.
Firefox doesn't do this.
What could be the reason for this?
the urls are:
http://website.example.com
and clicking on the image goes to (which is hosted on another server):
http://store.website.example.com
Could this be some internal security measure or ?
Hi,
I dynamically load a css stylesheet (with a little help from jQuery) like this:
var head = document.getElementsByTagName('head')[0];
$(document.createElement('link'))
.attr({ type: 'text/css', href: '../../mz/mz.css', rel: 'stylesheet' })
.appendTo(head);
This works fine in Firefox and Google Chrome, but not in IE.
Any help?
Thanks
Im really annoyed with Internet Explorer.I designed a site using css. The really annoying part is the cross browser issues..
The site works fine in all versions of FireFox and Chrome but when it comes to internet explorer.
IE5 - The complete site is messed up with the alignments
IE6 - Major Alignment problems.
IE7 and 8 Works pretty good.
Can someone please suggest some good methods to get rid of the cross browser issues with IE??
I'm using a modified version of Modern Clix by Rodrigo Galindez on my website, and I've encountered a problem with gaps on top of every one of my posts in IE.
The gap is the size of my left-hand sidebar and doesn't appear in firefox.
Ex.: http://martiningolf.dk/?page%5Fid=273
If anyone knows how to solve this problem, It'd make me happy.
I have a page that i want to show it modally by
returnval = window.showModalDialog(pagename, winArgs, winSettings);
When page postback internet explorer opens a new page so i use below code in page's HEAD
<base target=_self>
and now it don't return value.
It work in firefox and don't work in ie and chrome.
Hi everyone, hope someone can help. just cannot get a new window to open in Firefox without address bars. IE works fine with below code
Blockquote
window.open('/pageaddress.html','winname',directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=no,resizable=no,width=400,height=350);
i need to make for all browser
Hi
I have a javascript variable containing escaped HTML. There can be script tags inside the HTML, like this:
var valueToInsert = "%3Cscript%20type%3D%22text/javascript%22%3Ealert%28%27test%27%29%3B%3C/script%3E%0A%3Cscript%20type%3D%22text/javascript%22%20src%3D%22http%3A//devserver/testinclude.js%22%3E%3C/script%3E%0A%3Cimg%20src%3D%22http%3A//www.footballpictures.net/data/media/131/manchester_united_logo.jpg%22%20/%3E"
I want to append this to the DOM, and get all the javascript fired as expected. Right now I'm using this approach:
var div = document.createElement("div");
div.innerHTML = unescape(valueToInsert);
document.body.appendChild(div);
In IE, at the time i set div.innerHTML - all script tags are removed.
If I use jQuery to and do this:
$(document.body).append(valueToInsert)
It all works fine. Bad thing is, that I cannot use jQuery as this code will be added to sites I'm not in control of using some "already-implemented" script includes.
Does someone have a trick? If jQuery can do it, it must be possible?
I had another issue in Opera. I changed the injection script to be this: (still doesn't work in IE)
var div = document.createElement("div");
div.innerHTML = unescape(valueToInsert);
var a = new Array();
for (var i = 0; i < div.childNodes.length; i++)
a.push(div.childNodes[i]);
for (var i = 0; i < a.length; i++)
{
if (a[i].nodeName == "SCRIPT" && a[i].getAttribute("src") != null && a[i].getAttribute("src") != "" && typeof (a[i].getAttribute("src")) != "undefined")
{
var scriptTag = document.createElement("script");
scriptTag.src = a[i].getAttribute("src");
scriptTag.type = "text/javascript";
document.body.appendChild(scriptTag);
}
else if (a[i].nodeName == "SCRIPT")
{
eval(a[i].innerHTML);
}
else
{
document.body.appendChild(a[i]);
}
}
Hi folks,
I've been teaching myself Dojo over the last few days...
However, if you look at the following page:
http://www.mechanic-one.suburban-glory.com/
You'll see that the simple script in the header doesn't work in IE
I get the following message:
Message: 'duration' is null or not an object
Line: 8
Char: 622
Code: 0
URI: htt p://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/fx.xd.js
Do you have any ideas why this is so?
Andy
I am working on a website that has a menu which behaves correctly on FF but not on IE (as usuall).
On IE it floats to the right while it should float to the left, however if float is set to none it behaves almost correctly, attaching the onto the top of the container.
Here's the css:
#navigation_wrap
{
background: url(../images/ltr/nav_bg.png);
height: 34px;
width: 954px;
}
.btn_login
{
float: right;
margin: 4px 4px 0 0;
}
.navigation
{
float: left;
}
.navigation ul
{
list-style: none;
margin: 8px 0 0 15px;
}
.navigation ul li
{
border-right: 1px solid white;
float: left;
padding: 0 12px 0 12px;
}
.navigation ul li.last
{
border: none;
}
.navigation ul li a
{
color: white;
font-size: 14px;
text-decoration: none;
}
.navigation ul li a:hover
{
text-decoration: underline;
}
.navigation ul li a.active
{
font-weight: bold;
}
And here's the html:
<div id="navigation_wrap">
<div class="navigation">
<ul>
<li><a class="active" href="default.asp">Home Page</a></li>
<li><a class="" href="faq.asp">FAQ</a></li><li><a class="" href="articles.asp">Articles</a></li>
<li><a class="" href="products.asp">Packages & Pricing</a></li>
<li><a class="" href="gp.asp?gpid=15">test1</a></li>
<li><a class=" last" href="gp.asp?gpid=17">test asher</a></li>
</ul>
</div>
<div class="btn_login">
...
</div>
</div>
I hope anyone would have an idea.
Thanks,
Omer.