internet-explorer

Javascript "window.open" code won't work in Internet Explorer 7 or 8

I am using this chunk of jQuery/Javascript code on my site to open a popup window: $('#change_photo_link').click(function(){ $id = $('#id').attr('value'); window.open("photo.upload.php?id=" + $id,"Upload Photo", "menubar=no,width=430,height=100,toolbar=no"); }); This code works on Firefox and Chrome. It does not work on ...

Recommendation for freeware software to view cookies in IE7

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 ...

IE fails to load CSS file

Hi, I have problem with site: http://ggmedia.pl/ - IE fails to load http://ggmedia.pl/style.css When I look on HTTP headers there isn't any request for this file. Changing filename and/or path doesn't help - any ideas? ...

Why won't SWFUpload execute the upload.aspx code, and why is it saving all files to the root directory?

I am using SWFUpload v2.2. In IE (8):   If I upload a very tiny file (16kb):      1) The file appears in the root directory where upload.aspx is located.      2) Page_Load on upload.aspx.cs is executed.      3) The file is actually processed by the Page_Load procedure, and the processed file is saved in the correct location.   If ...

jquery ui datepicker IE reload or jumps to the top of the page

I am noticing this issue in IE 7 + 8 $('#event-start-date').datepicker({dateFormat:'DD MM dd yy',minDate:'-0d'}); When you pick the date in IE 7 or 8 the page goes to # and reloads the root page I am using jquery 1.4.0 and ui 1.7.2 ...

Using SWFUpload, why are my uploads not being proceesed by upload.aspx when using Firefox (they are processed correctly in IE)?

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). Can anyone tell me why (in Firefox) the uploads never hit the upload.aspx page? Most of the code for the page that the user visits to upload a file is show...

Why is there extra "white space" between these floated Div's in FF and not IE?

Why is there so much extra space in FireFox between the two floated blocks? <html> <head> <style type="text/css"> #Container-900px { width:900px; padding: 10px; border: 1px solid #CCCCCC; } #Container-900px .left { float:left; width:435px; height:300px; } #Container-900px .right { float:right; width:435px; height...

jQuery Tabs causes problems in IE8?

I am using jQuery Tabs with jQuery 1.3.2 run locally. The tabs get created just fine, but IE tells me that the site is running content that could be a security risk (which is annoying, but maybe that's what always happens when IE sees any javascript...I wouldn't know because I don't use IE). Anyway, I have 3 tabs, and whenever the user g...

Help needed for non-IE browser compatibility in JavaScript

My code works in IE but not in Firefox. I am trying to get the onmousedown and onmouseup events to work as well as the functions swapFE, swapEF and setUpTranslation in a browser other than IE. I basically have French phrases that appear upon the browser loading and when I click down on a phrase with my mouse they should translate to Eng...

Css-sprite menu not working in ie

Why doesn't Internet Explorer render this .css sprite menu i made? Could someone shed some light for me as i am unable to find any error in the code. Html: <div class="menu"> <ul class="nav"> <li class="home"><a href="#"></a></li> <li class="element2"><a href="#"></a></li> <li class="element3"><a hr...

CSS that only applies to Chrome?

This is my site: http://portable-ebook-reader.net The search bar at the top is made up of two background images. One is for where you'd type in the search phrase, the second is the actual button to search. My problem is that in Chrome the search button image is 2px too HIGH. But it looks perfect in IE and FF. And if I modify the CSS...

Powershell: wirte value in a input type=file Form.

I have a input type=text inputboxes on a webpage i load and fill with values and click the submitbutton which works fine: $ie=New-Object -comobject InternetExplorer.Application $ie.visible=$true $ie.Navigate("https://myurl/test.html") while($ie.busy){Start-Sleep 1} $ie.Document.getElementById("field_firstName").value="Firstname" $i...

trying to limit window resizing. how to do it?

I'm trying to set a limitation for down sizing the browser window. I managed to resize to desirable size if resizing under this limit, but it only works in FF(not in IE and Chrome). My questions are: What's the best way for limiting resizing? Why doesnt resizeTo does not work on Chrome and IE? ...

ActiveXObject issue in javaScript

hi.. I wrote a javascript function in my html page to execute an .exe file. for this i used ActiveXObject. my function is: //~~~~~~~~~~~~~~~~~~~~~~~~~~~JavaScript~~~~~~~~~~~~~~~~ function openWin(url) { if (!document.all) { alert ("Available only with Internet Explorer."); return; } var ws = new ActiveXObject("...

<input type=‘file’> for IE gives full path, need file name only

When perform uploading from IE browser, that my backend(org.apache.commons.fileupload) gets full file path. For other non-IE browsers it gets filename and it's OK because of security. How to get filename only from input for IE? Is it possible to do on UI, because I think it's not very graceful to edit apache lib. Maybe , some paramet...

CSS: Floating div to right causes container div to stretch full width of screen in IE

Hi all, I saw a similar question here, and did not see an answer. I'm having an issue where an element is floated right, inside a parent div, and it's causing the div to stretch the entire width of the page in IE7. This does not happen in any other browsers (Firefox and Chrome). I've also posted pictures after the question, for referenc...

CSS :hover in Sharepoint works in Chrome but not IE8( or 7 compat)

I have a DataFormWebPart rendering: <th class="MenuItem"> <xsl:attribute name="onclick" >window.location="<xsl:value-of select="substring-before(@URL, ', ')" ></xsl:value-of>"</xsl:attribute> <xsl:value-of select="@Comments" disable-output-escaping="yes" /> </th> With CSS like: .MenuItem { background-color:aqua; ...

JQuery select box focus problem in internet explorer

In the following ".input" matches with a tag. The code works fine in all browser except in internet explorer where I need to click on a select box twice to get the dropdown. $(".input").focus(function () { var rc = $(this).parents(".rc-input"); rc.removeClass("rc-input-default"); rc.addClass("rc-input-active"); }); If I use moused...

Jquery, "$.each(", function returns error in IE. 'Length' is null or not an object

My code is working fine in FireFox but my users are restricted to IE. I'm getting an error though in IE, related to my JQUERY function. populateTable:function(returnList) { var self = this; var eat = $.evalJSON(returnList.firstChild.textContent) $.each(eat,function() { $("<tr><td>" + this.reportId + "</td><td>" + ...

How do I remove focus onmousedown in IE?

The ultimate goal: pretty pages for mouse users, accessible pages for keyboard users. The effect I want is for clicking an anchor to produce no outline during and leave no outline after. Further, I want keyboard tabbing to move the focus and thus surround items with an outline. The following code works in FF (and I assume the other mo...