I have created a page with 4 widgets each having a table with in it. User can click on the header of the widget to select it. On doing so, the widget will get a class "widgetSelected" and the selected column of table in it, will have a light blue color. If someother widget is selected, the "widgetSelected" class will get removed from thi...
Here's my JS insert:
<script type="text/javascript" src="include/profile.js"></script>
In IE8 with "Compatibility View," the file never loads. The first line in the file is a simple alert() call, so that I know it loaded. Change the browser to Standards View, and it loads fine.
Also, if I add:
<meta http-equiv="X-UA-Compatible" cont...
**this question is on bounty because the below answers did not solve the problem.
I am debugging a page in IE7 and have run into one problem. When you hover over a nav link, the dropdown falls below the slide below it. The dropdown ul is positioned absolutely with a z-index of 10 and the slider is positioned relative to its parent with...
My script is supposed to dynamically change the background-position when clicking on a button (adding or substracting 1 percent from the current value). Works fine in Fx and Chrome, and ie8 too (i believe), though not in ie7.
Here's my code:
function makeClicker(index) {
$('#leftbutton' + index).click(function() {
var bPos ...
I'm attempting to display a logo (PNG created in Paint.NET) on my web page (XHTML 1.0 Transitional), like this:
<body>
<div class="header">
<div class="logo">
<img src="logo.png" />
</div>
<!-- etc. -->
.header is styled as follows:
.header {
background-color: Black;
color: White;
margin-left: -3em;
padding-...
Hi!
I want to make sure that the structur of my form is like that:
<form>
<div>
<label>
<input>
</div>
<form>
I use jquery to catch the label from whereever it is and move it between <div> and <input>.
This works fine in Firefox but IE has problems with that. How can I get it running with IE?
Here's the line that ...
Hi all!
I'm wrapping up a new site, http://architect.sitesbyjoe.com and I'm using the innerfade plugin on the site's homepage. For some reason, the fading is slow and choppy.
The only other thing Javscript-wise is the Fancy Zoom, but I've already removed it etc with no change.
Any thoughts? Other posts are pointing to CSS issues....
...
Please can you recommend a good program to view cookies in IE7?
In particular I need to:
View a specific per-session cookie
View its contents
Delete the cookie
...
In this small, but full example, I am trying to recreate a dual list box UI component. I simply wish to be able to move items from one box to another. (Would be nice if I could add sorting, but one hurdle at a time I think!)
I am getting a problem with this code in IE7 (FF, Chrome, Opera all seem to work fine). Whenever I move items f...
Should I be able to see per-session cookies, created by IE7 (on Vista) here:
C:\Users\myUsername\AppData\Local\Microsoft\Windows\Temporary Internet Files
That is where my standard cookies are stored.
...
How can I get an embedded video to float left in IE7? The following code works great in FireFox and the text wraps around the floated div and video, but in IE7 the text sits under the div/video.
<object height="264" width="320" style="float: left; margin: 5px;"><param name="wmode" value="transparent"><param name="AllowFullScreen" value=...
I am trying to create an option transfer plugin for jQuery.
I have the basic functionality working in opera, firefox, chrome & safari but IE7 is failing to co-operate.
The transfer functions in IE7 appear to operate very sporadically and incomprehensibly.
I have created an example page to illustrate my problem.
Can anyone see where ...
I would like to debug JavaScript that resides on a 3rd-party site, using IE7 and Visual Studio 2008.
How can I break into the debugger? There are no JavaScript errors and I don't have access to the JavaScript source (since it is on a third-party site).
I just want to walk through the JavaScript and see how it's working.
The JavaScript ...
I have noticed that IE7 does not url-encode querystring parameters retrieved from javascript, e.g:
var qs = location.search;
In Firefox, the parameters are encoded. How can I write IE-specific code to URL-encode the parameters in the same fashion as FireFox?
For example, in Firefox, this querystring:
?val=<script>
//gets rewritten ...
Hey guys! I feel like I have gotten a good grasp on IE6 and 7 recently, but today I was working on a site and I just seem unable to fix this problem.
http://arboroaks.bythepixel.com/tyrone/
Check it out in Firefox and Chrome and IE8. All looks good! But then, go into IE7 and some extra padding gets added, as well as the links have...
I have a fairly complex asp.net page based on UpdatePanels and jQuery UI. Unfortunately, when the panels update, the jQuery UI widgets leak memory like crazy in ie7, even if I manually 'destroy' them. Does anyone know a technique/patch to prevent these leaks? I've created a simple example page with a slider inside an UpdatePanel. Jus...
You can save the code below and try it out.
In firefox,it's full browser grey,but in IE(IE7 to be exact),it's not working.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style text="text/css">
.overlay { ...
I've been using IE7-js for a while and now I need to re-apply the IE fixes after DOM changes (eg. new elements added).
How should I do so? I tried with the ie7-recalc.js script, but witouth success.
...
Hi there,
working on a site for a client (demo page here, still under construction: http://www.wmaxwell.com/newsite.html ). The 4 tabs line up fine in FF 3.6, IE8 and Chrome, but when I checked it out (using Virtual PC) with IE6 and IE7, the tabs are all crooked. Can anyone using IE6 or IE7 confirm this for me, and can anyone give me so...
I have a navigation bar that is fixed position top. Inside it is a mailing list signup field. When hovering over the containing div. jQuery slideDown is invoked revealing more input fields in the previously hidden DIV and then SlideUp is invoked when mousing out. The trouble is that everything behaves in Firefox, but in IE7 the bottom...