Hello everyone.
I want to make IE 8 understand my site as IE8. And not in IE7, compatibility mode, etc.
I have had a lot of issues to do this, even the same site in my localhost was different that in the production server. (Never mind what language, happened with: php and asp.net).
I've been watching these links:
http://msdn.microsof...
When we render dynamic elements with Javascript in IE7, the CSS styles are not applied. When we use the Web Developer toolbar to view the page, the dynamic elements do not appear. Pages render fine in Firefox, Chrome, and Safari.
Is IE7 unable to apply CSS styles to dynamically created elements? IE8 renders the dynamic elements prope...
The following works fine in Firefox and Chrome, but IE 8 will not call the submit() method when the anchor link is clicked.
<a href="javascript:void(0);" onclick="submit();">Sign In</a>
The submit method is defined on the same page as follows:
<head>
<script type="text/javascript">
function submit()
{
// other code ...
While executing the following code IE throws the error -- Object doesn't support this property or method -- referring to the cloneNode() method. 'i' is the loop counter, source and dest are both HTML select elements.
dest.options[dest.options.length] = source.options[i].cloneNode( true );
FF and Chrome behave as expected. Any ideas ...
So for example I have a structure like this:
Javascript
function toggle(id){
var element = document.getElementById("id");
if(element.style.display != 'block'){
element.style.display = 'none';
} else {
element.style.display = 'block';
}
}
HTML
<div onclick="toggle('holder')">Toggle Video</div>
<div i...
Hi,
I have two drop down lists on a page. The behavior is as follows:
select something in list 1
list 2 is enabled
select something in list 2
button is enabled
I am doing the above with autopostback enabled on the drop down lists. To toggle the button I use the code below:
if (ddlAvailablePrograms.SelectedValue != string.Empty)
{
...
HI everyone,
I have a page which displays just fine, in Firefox and Chrome. However, it has the content pushed past the bottom of the sidebar (as if I had a clear) in Internet Explorer 8 (I haven't tested any other IE versions). Does anyone know how to fix this?
The page is located here
Thanks,
Lemiant
...
jQuery $.ajax() does not seem to work correctly with IE8 but it is working with Firefox, Chrome and Safari. I am submittin the form and response back in JSON format.
Here is my code:
test.php:
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="jsFile.js"></script>
<form action='_test.ph...
Hello Experts
I am basically a dotnet developer(beginner). I need to make an IE addon just like Firebug in Firefox. I need HTML and CSS features of Firebug, don't need the other features.
I would like to know where should I start with and which platform should I choose. I would prefer dotnet, but if not possible can go for others as wel...
Is there a way to create add-on for IE in .NET?
...
I have a WPF C# client app with an embedded webbrowser control. I have all of the proper hooks in place so that if the site I'm browsing to requires authentication, I handle the IAuthenticate and pass in the required credentials (the user has already logged in to the client app itself). That works great, except...
If user "Bob" visits t...
Hey is there a jslint-like inspector that will flag on calls that are incompatible with older versions of IE? or just cross browser incompatible calls in general?
...
hi,
front end design is my weak spot so im a bit lost.
The nivo slider for this site(www.myfriendshotel.com) im working on is working fine in firefox but not in ie.
The only reason on google why it wouldnt work is the styling not being closed properly but I have checked all of that.
any ideas ?
Thanks, Alex
...
I see a very funny behaviour in my page when it comes to IE6 and IE5.5. I have a script (supersleight if you know about it) that puts PNG's back in business when dealing with IE6 and IE5.5. During execution of this, I want to change the background into using the Explorer alpha filter (if Javascript is turned on, use filter, otherwise sti...
Apparently, this call to window.open is not valid under Internet Explorer. The Javascript code on my site is not running, I would assume it is due to that error.
The line it tells me the error is on, is the call to window.open, apparently an argument is not valid there.
$('.objeto').click(
function() {
var center ...
For a site I'm building, I import my Jquery code from...
http://jqueryjs.googlecode.com/files/jquery-1.3.2.js
...but when I run the site in IE, it gives me various instances of "argument not valid" on line 4031.
This happens when I hover above a field which should be animated on trough Jquery. Here is the JS code I wrote...
$('body...
I get different behaviour from my Javascript depending on if I write it or copy paste it myself from the already existing code or if I copy paste it from the Internet
This EXACT code gives different results depending on if the top two or bottom two are active:
var tt = 5;
alert(tt);
//CODE;
//CODE;
//var tt = 5;
//CODE;
//alert(tt);
...
csshover3 doesn't work with wordpress !!! [Fix IE6 Hover]
behavior:url('Script/csshover3.htc'); /*From Style.css*/
http://photoshop.faressoft.org
...
My HTML page has extra width, but only in IE7. I get horizontal scroll bars even though all the content of the page seems to fit in the browser window.
Take a look:
Video: http://www.youtube.com/watch?v=_cxGzcTodTk
HTML page: http://photoshop.faressoft.org/
...
I have an XML file which was generated by serialising a C# object.
I want to parse this XML using javascript.
When i try to load a string as XML using javascript, it works fine in IE 8, but fails in Firefox.
This is the code i am using
if (window.DOMParser)
{
parser = new DOMParser();
xmlDoc = parser.parseFromString(stringValue, 'tex...