During execution of tests on ccnet server. Some of the tests fails saying Timeout while Internet Explorer busy and hangs the system and at the end show the old results-xml file in nunit results even I am using a clean build.
...
is there a way to know when the user perform refresh to the page using the
SHDocVw.WebBrowserClass of ie using C#
...
JavaScript performance in Internet Explorer sucks. No news there. However there are some tips and tricks to speed it up. For example, there is this three part series. Still I find myself unable to squeeze decent performance out of it. Perhaps some of you have an idea what else to do so it was speedier?
What I want to do is create a medi...
Hi,
I need to launch a browser, do some work and then make the browser navigate to a URL (in that order).
The first part is of course simple and I have a Process object. I am at a loss as to how to later direct it to the target page?
How do I treat the Process as a browser and make it navigate to the desired page?
Any help, pointers,...
Hi, I'm frustrated.
I already have a window open with the web site I'm debugging. I don't need VS to launch another one for me every time I need to debug.
Is there a way to stop this behavior?
Thank you.
...
I don't have direct network access to the linux host I'm debugging PHP/Javascript code on. I SSH to a jump box, then use FoxyProxy to tunnel my firefox requests through my SSH session using SOCKS forwarding.
I want to be able to debug the javascript code in IE, but unfortunately my FoxyProxy setup only works through the FireFox extensi...
Hi
My logo, which I'm referencing in my external css style sheet is working fine in Firefox, but does not appear to work in internet explorer:
below is the code I'm using:
#header
{
width: 760px;
float: left;
background-color: #fff;
}
#header h1
{
float: left;
font-size: 1em;
text-indent:-9999px;...
The Mozilla Foundation continues to add new language features to JavaScript. They're up to version 1.8 now where 1.5 was more or less the ECMA baseline.
However, Firefox is the only browser that supports the latest version and IE is firmly stuck at a 1.5-equivalent JScript.
What purpose do the Firefox-only extensions serve? Or are they...
I've written a Javascript script that automatically resizes the height of an IFrame, depending on its content. This is done as soon as the content of the framed page is produced; in Firefox no problem, but in IE the script is correctly executed but no effect is seen: the method is called in a callback function. Any sugestions?
If I execu...
Hello,
The following code creates 100 cookies and then enumerates through them via postbacks.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
for (int i = 0; i < 100; i++)
{
HttpCookie cookie = new HttpCookie("cookie num." + i.ToString());
cookie["Cookie"] = i...
So I've got a bookmarklet which should open up a page in a new window.
javascript:window.open('http://timetableapp.com/TimeTable/bookmarklet/index.html','TimeTable%20Timer','status=no,directories=no,location=no,resizable=no,menubar=no,width=400,height=210,toolbar=no');
The code works perfectly in Safari, Firefox, and Chrome; but as ex...
I'm looking for the easiest solution to fixing a problem I have in Internet Explorer (6,7 & 8), be it CSS or using jQuery. I have a SELECT Input with a defined width (because of where it sits in the layout). Because of the defined width select is cut off from showing their full values, unlike in Firefox & Safari where they are automatica...
Our build script creates a HTML log with some embedded javascript. When I open that in Internet Explorer, I get the yellow warning bar that IE has blocked running "scripts or activex controls".
Since it is a local file, I cannot add it to trusted sites (IE expects a domain here).
I do not want to change security settings for the defau...
I'm working on a new portfolio site at http://www.nitrohandsome.com, and am using the experience to cut my teeth on jQuery. I'm using the latest build and jcarouselite along with the easing extension on my main page for a nifty carousel effect. It works fine in most browsers, but when I started testing in IE (7 and 8, haven't started opt...
My site works fine in Firefox, but it crashes in IE.
I am using alot of jQuery in order to fade in content. When the user clicks on one of the above links a few times, it will crash in IE.
Here is my site: Idea Palette
I have absolutely no idea why the site crashes in IE. I don't even know where to begin to debug my problem. I don't h...
I have a link that uses javascript to submit a form, like so:
<a href="javascript:document.some_form.submit()">some link</a>
However, this will point to a vendor-supplied application that of course only works in IE. Is there any way to make this link open up in IE if the user is using a different browser?
...
I recently setup a web page to allow people to add new row to a table. I am using clone row and I discovered that using this procedure has a tendency to lock out IE7 users from typing data into text fields. has anyone else had this same problem.
...
In IE it is giving me the "some items on the page are not secure" message. I have tracked it down to this line:
<script type="text/javascript" src="lightbox/js/prototype.js"></script>
which is a lightbox script I downloaded. I tried making the src relative or absolute with https it happens either way. And only in IE.
Heres the page i...
I'm looking for some more thoughts about the best way to initiate a file download from Javascript.
http://stackoverflow.com/questions/60590/best-way-to-initiate-a-download has a lot of good ideas which can be summarized:
Set the src on an iframe
Use window.location.replace()
Use a page with a meta refresh header
Use a window.open()
Let...
I have the following table:
<table>
<tr>
<td style="height: 7px; width: 7px"> A1 </td>
<td style="height: 7px"> B1 </td>
<td style="height: 7px; width: 7px"> C1 </td>
</tr>
<tr>
<td style="width: 7px"> A2 </td>
<td> B2 </td>
<td style="width: 7px"> C2 </td>
</tr>
<tr>
...