I have the following code:
function header(){
experience += '';
var expimage = '';
for(var cik=0;cik<experience.length;cik++){
switch(experience[cik]){
case '0':
expimage += 'img0';
break;
case '1':
expimage += 'img1';
break;
case '2':
expimage += 'img2';
break;
case '3':
expimage ...
I have a web application - a Java servlet - that delivers data to users in the form of a text printout in a browser (text marked up with HTML in order to display in the browser as we want it to). The text does display in different colors, though most of it is black. One typical mode of operation is this:
1. User submits a form to reque...
$("#listView object.modal").click(function(){
// Get the ID of the clicked link:
var link = $(this).closest("h2").attr("title");
var id = $(this).closest("div").attr("id");
showDialog(link, id);
return false;
});
This fires a modal (jQuery UI). It it working in FF, Chrome/Safari but not in I...
Building a site super quick and having it work on all my Mac browsers, I thought I'd take a gander on a friends old dell laptop with Windows XP and IE6.
Nothing looks remotely correct. It's because I used lots of left/right/top/bottom (constraint) declarations to size elements proportionally to their parent's size (I didn't use percen...
I need to write a Perl script to scrape a website. The website can only be scraped with JavaScript, and the user is on Windows.
I got some way with Win32::IE::Mechanize on my work machine, which has IE6, but then I moved to my netbook which has IE8, and can't even get as far as fetching a simple page.
Is Win32::IE::Mechanize up to d...
I have read lots these past few weeks on IE6, seeing if it was really that bad to make it look right. I have just learned HTML and CSS this past year so I've been spoiled to start with basically CSS3 and HTML5, and I can do some really cool stuff super fast. I'm no IE6 master and I don't have years of experience with IE. So I thought ...
I have an html table nested in an html table cell. I want the nested table to use the full size of the cell it is nested in. When I use firefox or google chrome I get the result I want but when I use Internet Explorer 8 (even if I use td style="height="100%") the height of the nested cell depends on it's content. As a result I get whites...
I use jquery ui dialog widget. Everything works fine in FF, Opera etc., except IE. The problem is that when dialog is opened in Internet Explorer, some space (not covered with that "modal gray layer") is added at the bottom of the document, and page is scrolled to the bottom. So I don't even see the dialog, I have to scroll up, to see it...
The use of JsHttpRequest for data transfering leads to IE notification about ActiveX.
• Are there any ways to circumvent this?
• Or are there any alternative ways of transfering data without page reloading, that do not lead to the appearance of this message?
...
Just like the question says, I want to be able to use psexec to start Internet Explorer, then load a particular website in the browser. I know how to start IE, just can't make a command that goes to a particular webpage. This is what I have so far:
psexec "C:\program files\Internet Explorer\iexplore.exe"
I just can't figure the syntax ...
Hi, I'm having problems updating a div's content in IE using .update; I also tried with innerHTML with no success. My script works fine with firefox and chrome, but I need to make it work with IE too (neither 7 nor 8 accept the functions). Any hints ?
Thanks in advance.
The context is a simple shopping cart with two spinner buttons to m...
I not been able to put one DIV over his parent DIV in Internet Explorer.
With Firefox is working as suposed to.
The odd part is that if I open the html file directly in IE, everything works fine.
But if I upload to the server and open from there, the div is hidden underneath his parent.
I've tried several z-index combinations and none ...
Using only keyboard, how can I select non-consecutive options of a multiple select element. On Firefox or Windows explorer, I can simply ctrl+Arrow to move the focus and then space bar to select. But I don't see any way to make it work on IE.
Thanks
...
This week I decided to add a new element to a javascript array by copying a similar one from a previous line; unfortunately I forgot to remove the comma so the end result was something like var a = [1, 2, 3,].
The code went live late Friday afternoon just before everyone left for the week-end, and it completely broke everything in Inter...
I am developing a simple c++ program inside Microsoft Visual Studio. This program will later be convert to DLL, in order to register it to Internet Explorer.
Inside my program, I would like to do like this:
if flag=1,
toolbar_button = green;
else
toolbar button = red;
I want to create a simple button on the Internet Explorer,...
I am writing a warm-up script for a SharePoint server. The idea is to call stsadm and then open an html file containing iframes which touch all the key web pages in my portal.
So far so good. The problem is that each time the script is run, a new browser window is opened and I end up with a screen full of browsers.
The first idea was t...
I think im going to kill someone high up in microsoft very very soon:
Please can someone help me get my head around this bug:
http://www.yellostudio.co.uk/tm/selection.html#
I'd like the top h2 to display inline block alongside the help icons on the right.
The issue only exists in ie7 and its doing my sweed in...
Any help would be ve...
In the footer of a flexible-layout website I've noticed that IE tends to line-wrap on parenthesis characters (in a phone number in this case). Is there a visually equivalent non-breaking parenthesis, in a similar vein to non-breaking spaces and non-breaking hyphens, that I can use instead?
...
I have a containing element with a number of floated elements in it. That containing element also has a percentage width value applied to it.
In IE7, content following the element containing the floats is cleared because of the width value which gives it hasLayout (I think!).
I don't want the containing element to haveLayout, but I do ...
Hello guys.. it's i first time i'm asking here. Sorry if the answer is available already.
I have a very small jQuery script that canges the paramether for onclick attr on a DIV.
IT works like as right and left arrows for some content in the middle.
Basically i set the onclick="foo(1)" then when get clicked sld change the value 1 to 2,...