The built-in WebBrowser Control in Visual Studio apparently only supports up to IE4. When wrapping your typical jQuery/jQuery-UI, some layout errors abound. Is there an easy way to convert the webpage's layout to IE4 friendly (I'd imagine, table-structure rather than div-based etc)?
...
Is there a possibility/trick (besides the usage of the AJAX update panel) to prevent the ASP.NET master page reload flickering effect in IE) every time the user makes a postback?
...
on this site:
http://staging.university-bound.com
I am utilizing DoubleClick for Publishers (Google Ad Manager)
I have 6 ads as third-party. In most browsers, all show up fine.
In IE, however the first one that should be 519x77 in the top dark-gray area (it should say "Questions?" - check it in FF) does not show.
I see no difference bet...
I'm working with an embedded (Active X?) instance of IE within a VB6 application.
The browser displays demographic information based off the selected person (displayed as a list).
Everything works great until I try to quickly select different people from the list (clicking randomly over different people as fast as I can). After a few c...
The following code,
public class IEBrowser
{
SHDocVw.InternetExplorer view = new SHDocVw.InternetExplorer();
public void Display(String url)
{
// make sure it's open
if (!view.Visible) view.Visible = true;
view.Navigate(url);
}
}
works as expected on the first call to Display. However, the ne...
I remember one time my friend told me about this great app that lets developers test a web site on multiple IE instances. I am just wondering whether any of you guys know the name of this app.
...
I tried using the Moving Boxes jQuery Plugin in Asp.net Mvc. It works in every browser except for IE.
Heres the plug in code. I was wondering if somebody has an idea on what might be different in IE, possibly something along the lines of the way IE parses widths? or fixed widths?
$(function () {
var totalPanels = $(".scrollContainer")...
I'm trying to change the innerHTML of a element based on the value of the previous element.
I have the javascript correctly grabbing the current value and everything works correctly in Firefox, Safari, Chrome and Opera. IE is a pain.
sample code:
<form action="soap.php" method="post">
<select name="circuitproduct" id="circuitproduc...
function fadehomepage() {
//Set opacity to 0
$('#showcase_home > div > a').css({'opacity':'0'});
$('#showcase_home > div').hover(
function () {
var selected_div = $(this).attr("class") + "_hover";
$(this).find('.' + selected_div).stop().fadeTo(...
I have an .aspx page and am using the FTB:FreeTextBox control. Seems to be working fine except in conjunction with the jQuery spellchecker. In IE the spell checking is not working in the textbox.
Is there something specific that its looking for to get it to work in IE?
...
I have a classic UL multilevel menu that works flawlessly in Firefox.
The LI are float: left, and the A inside is width: 100% and display: block but as you can see from the screenshots below the submenu items (Hello, World and Foobar) display inline.
The weird thing is that this affects the menu even when using canned solutions such as...
I am checking a value of session and if there is no value i am redirecting it to default page.The following works in firefox and google chrome but not in IE.
if (Session["OrgId"] != null)
{
//My logic
}
else
{
Response.Redirect("../Default.aspx?Sid=1", true);
}
I get Operation Aborted in I...
I'm trying to set up a webpage that downloads the OCX and installs it with the user permission when the user right click in the yellow bar
Note: it's a business app and I know... IE, but 95% of company customers use it and it's easy for us to move from Windows > OCX first and then to full WebService
What I did was create a cab file wi...
The user sees a form with many controls, including a list box. He selects a single item in the list box and presses "submit".
In PHP I access $_POST[] and want to display the list box as read-only or disabled with his his selected item also selected. It should be read-only or disabled because I am showing him what he submitted and I don...
Hy there...
I have a problem with Internet Explorer conditional comments...
I use this condition
<!--[if lte IE8]>
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/>
<![endif]-->
The problem is that in < IE8.0 i get output <!--[if lte IE8]><![endif]--> before any other output... Why?!? In Fi...
I am looking for the API calls that would allow loading cookies into IE from say a text file. I believe this should be possible since IE has a import/export facility for cookies, feeds and favorites. When performing this kind of operation besides recreating the cookie txt files, index.dat must be also updated, otherwise the cookies won'...
<body id="body" runat="server" onkeydown="return showKeyCode(event)">
Now whenever I hit a key, IE8 (or in comp mode) throws an exception directing to a problem
in line x, which happens to be my body tag. How can I prevent that ?
The JS code to my knowledge should be with IE comp. (works in Chrome)
Moreover the code doesn't work in IE ...
If possible, I want to prevent my ActiveX control from being accidentally executed by untrusted pages, because it can be used to download and run a file.
One idea is to have the control know the domain of the HTML page it is instantiated on, and prompt the user if they trust this domain. It would remember this choice in the registry. If...
I've got a script that forces a download to a user programatically. In IE (at least 6, the only version I've seen screenshots from), the download window appears to take the last part of the URL and use that in the title bar of the download window. In my case, the last part of the URL is "nohead", which comes from a specific function in t...
Does anyone know if SVG is working in a recent version of IE?
...