I have an Internet Explorer Browser Helper Object (BHO) that uses the JNI_CreateJavaVM() API to create a Java VM in the iexplore.exe process so that I can make JNI calls for my business logic. However, when I browse to sites that try and load Java applets (e.g., http://www.javatester.org/version.html), then the applet fails to load. If...
I am trying to make an AJAX call from several domains to a single one which will handle the request. Enabling Cross domain in Firefox and Chrome was easy by setting the header on the handling server:
header("Access-Control-Allow-Origin: *");
But this doesn't help enabling it in Internet Explorer. When I try:
httpreq.send('');
it st...
I have a page with IE conditional comments in head section, nothing fancy just:
<!--[if IE 7]>
<link rel="stylesheet" href="css/IE7.css" type="text/css" />
<![endif]-->
As I'm at work ;) didn't have a chance to setup testing page yet, but long story short it works as expected when JavaScript is on. When JS is off IE dosen't seem t...
Hi all,
Here is my code
<a target="_blank" href="http://www.example.com" class="style1">Click</a>
In IE6 when it is been clicked it opens a window but its not a fullsized window its only half of the orginal window size.In IE7 and IE8 its 3/4th.In Mozilla it works good.Without changing the browser settings how can i make my customers ...
I'm developing a portlet application where I cannot control the doctype. I need to put IE7 in standard mode for things to work. Is there a way to do so?
...
I have the following code. The code populates a list box basing on the selection done. But my code works on IE 7 & fails on IE 6.
//----------------------------------------------------------------------------------------------
//fill the location list on the basis of Country
function FillLocationList()
{
var opt = document.create...
I'm trying to display an image returned by an aspx page like this
<asp:Image ID="ButtonImage" runat="server"
Width="200"
Height="113"
BackColor="LightGray"
ImageUrl="/Editor/OpenMedia.aspx?path=336!TestImage.jpg"/>
OpenMedia.aspx
public partial class OpenMedia : MemberPage
{
protected void ...
We're using a control that uses Callbacks in our ASP.NET page.
The control works fine in FireFox, Google Chrome, etc.
The control works fine if we do not use ASP.NET AJAX History. As soon as we call this code, the callbacks stop working in IE (6, 7 and 8):
ScriptManager.GetCurrent(Page).AddHistoryPoint("h", id);
I did some server s...
I am using the TinyMCE rich text editor on my site. Instead of hosting the TinyMCE files on my main site, I am using Amazon's S3 hosting to serve up the JS, image, and other files in the TinyMCE package.
With Firefox, life is good. TinyMCE get's served up nice a quick. With Internet Explorer, I get Access Denied and/or a Security Warnin...
The code i wrote for ebay listings seems to be different for the same listing depending on if it is opened with internet explorer or firefox. the source i uploaded to ebay was the same now when i view the code in firefox it shows correctly but in internet explorer it does not. when looking at the source taken from the ebay listing online...
I'm fairly new/inexperienced with web programming, but I'm trying to spruce up my Dad's website a bit. I made some (I believe..) fairly inconsequential changes to this faq page: http://people.ku.edu/~grhodes/FrequentlyAskedQuestions.html (the original can be seen at www.huntvalleydental.com). Now Firefox and IE aren't displaying the form...
I have some HTML drop-down menus, and then dependent upon the selection I then highlight the appropriate column heading in a table. I do this by changing the css class of that <td> tag like so:
$("#searchcolour").attr("class", "filledselect");
$("#searchtask").attr("class", "filledselect");
$("#searchshape").attr("class", "filledselect"...
Please tell me if you need more info. I have a calendar that is a table. For some reason, IE is adding a vertical scrollbar to the edge of the page but there is no scroller (and nothing to scroll) FF and Safari look fine.
Any idea?
Thanks
Joel
...
For this report created in HTML & CSS the left borders are disappearing in IE 7 & 6. They show up correctly in IE 8, Firefox, Chrome, Opera, etc.
I am applying the style with three different CSS classes:
.LeftBorder
{
border-left: 1px solid black;
}
.LeftBorderHeadingShaded
{
background-color: gray;
color: black;
tex...
I use Firebug's console.log() for debugging my website. If I try viewing my website in browsers without Firebug then I get a console is not defined error.
Is there a way to gracefully avoid this error?
I found this potential solution, but it seems a bit cumbersome.
And ideas?
...
I have a dual column layout using CSS:
<div id="nav"></div>
<div id="left_column"></div>
<div id="right_column"></div>
<div id="footer"></div>
#left_column{
float: left;
width: 463px;
display: inline-block;
margin-left: 12px;
}
#right_column{
float: right;
width: 463px;
display: inline-block;
marg...
I'm developing a web application where, due to slow database access, not all content in a page is loaded immediately but rather dynamically when the user clicks a button after optionally making a selection.
This works fine. However, after dynamically loading content, if I navigate to a different web page, then navigate back, in Internet...
I'm using Tapestry to create pages for a web app, and have been using the palette component to add/delete items to/from a group.
The page looks great in Firefox (Tapestry seems biased towards Firefox), but my customers will all be using Internet Explorer (any versions from 6, 7, & 8) and in IE8, the disabled arrow buttons look awful. I...
Internet Explorer (with default settings, which I generally assume will be in effect on the desktops of the Great Unwashed) seems to dislike the idea of accepting attachment content in an HTTP response if the corresponding request wasn't made directly from a user action (like a "click" handler, or a native form submit). There are probab...
Hi,
I have a website that offers a service to subscribed members. It has been reported to me that one of the pages that has a form used to submit data to a mysql database has not been displaying saved changes.
The form should display back data that has been stored in the database. (After the page has been submitted)
I thought this was...