internet-explorer

Allow FTP via Internet Explorer in IIS7?

I have an FTP account created and it works fine with an FTP client but won't work with IE. If I remember correctly IIS6 let you do this with no problems, is there a rule or setting I am missing? I currently have 1 Allow rule for a specific user and 1 deny rule for all Anonymous users ...

@font-face in IE with modal window: once in the modal font reverts back to Helvetica

I'm using @font-face and it's working perfectly even in IE when loading the index page. However, when I open my modal window using IE it still works and then I click on a link within the modal to display a new page in the modal - it reverts to Helvetica on that page, on the previous page and even when I close the modal my index is now in...

Weird behavior of jQuery UI Explode in Internet Explorer

I'm trying to show an background-image after a user clicks on a box. (I know I'm a bit lazy on the CSS) <script type="text/javascript"> $(document).ready(function() { var options = {}; $(".toggler1").click(function() { $("#effect1").effect("explode",options,1000); $(".toggler1").html("<div id='effect1b' style='floa...

Multiple cookies with same name

I just figured out that I have a problem in IE while working with one of my pages. I set cookie with: setcookie('page', '12345', '2000000', '/'); And if I login I reset the cookie calling that function again. In firefox everything works fine cause the old cookie is deleted but in IE both cookies stay? How can this happen? Isn't that i...

I want to make browser add-ons/extentions, which programming language do i need to learn?

Which programming languages do i need to learn to make browser add-ons/extentions for all the browsers out there? I have been told its Javascript? Thank you in advance. ...

Get browser version of IE using Javascript

I am using the following code to get the version of IE in a system. var browser = navigator.appName; var b_version = navigator.appVersion; var version = parseFloat(b_version); alert(version); But the version always get is 4 in IE^ and IE7. How can I get the exact version? ...

Back Reference Link (link of back page)

i am using this function to get link of page which refered current page (in Back Button) :- Shared Function RefererPage() As String Return HttpContext.Current.Request.ServerVariables("HTTP_REFERER") End Function this function is working fine with mozilla firfox but not working with Internet Explorer (IE8) please tell me why...

Strategy to start supporting other browsers

We have a web application that only supports IE6 and above. It is an old application and majority of the user base was using IE. At the time of development no one paid attention to cross-browser support. If you open the site in Firefox, the UI is all skewed. We are planning to start supporting Firefox now. What is the strategy we should ...

I just don't know what it is, tried everything, IE 7 bug

Has anyone seen this bug? I have a sidebar with a ul nav background image for the hover state, floated right, looks great in all browsers. Then...I added another div underneath it for ad space. inside, there's an anchored image. That image tucks underneath the background image of the nav, but only in IE7 (i abandoned trying to please...

un rotate element using filter in IE

I have the html structure like this <div class="block> content <span class="child">text</span> </div> in css i said: .block{ filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.99254615, M12=0.12186934, M21=-0.12186934, M22=0.99254615, sizingMethod='auto expand'); } So that the block will rotate minus 7degree. However, I d...

How to set css position absolute for Firefox and Chrome and relative for IE

Hi y'all... What is the IE hack for setting the position property : relative in "not-a-browser"IE and position : absolute in other browsers (FireFox, Chrome).. Thanks everyone..!!! ...

Anybody know why "x".split(/(x)/).length returns 0 in IE?

In IE, "x".split(/(x)/).length returns 0 In Firefox, Chrome, Safari, and Opera, it returns 3. Does anybody know the reason why? If possible, a reference link will be greatly appreciated. I believe that it is a IE regex implementation issue, but I can't find any document about that. ...

Images don't load in IE

Demo: http://www.simpsoncrazy.com/characters/poster2 (Using Map Hilight plugin: http://plugins.jquery.com/project/maphilight) When you click a quadrant of the image, it should zoom in on that image, however in IE8 (regular and compat mode) the "zoomed" images never load. Also on the top-left segment the right arrow appears on the left. ...

jQuery css() function won't apply IE hack attributes

I'm trying to apply an inline-block style to an element (a div to be specific). And in order to achieve this in IE you have to use a hack: $('#element').css( { 'display' : 'inline-block', //applies inline-block to matched elements in all browsers except IE due to hasLayout bug 'zoom' : 1, ...

"Stop running this script" - IE for large AJAX requests

I'm using jQuery.getJSON(...) to make a call/process response for a slightly large data set. The response time being a couple of seconds is expected(there's an animated loading graphic to placate the user). All being said, the loading graphic, response, process, etc are working fine in all browsers. In Internet Explorer(6/7/8), however,...

Edit existing browser window DOM

(Note: This question is for an internal-use-only project, so some of the usual security concerns don't apply.) I'm trying to find some way to insert HTML/Javascript into a pre-existing IE7 browser window. Basically, we are using a web-based support ticket system, and I am inserting code into the page to add links and lists and such, to ...

Replacing PNG images with transparent background in Internet Explorer

image1.png and image2.png are both with transparent background. <script type="text/javascript"> $(document).ready(function(){ $("img#test").click(function() { $(this).attr("src", "image2.png"); }); }); </script> <img id="test" src="image1.png"> The above code is supposed to replace image1.png with i...

Web Browser Plugin that Allows user to view Message Traffic

What is the name of the IE plug in that someone can download (I think from Microsoft) that lets a developer (well, anyone who gets the plug-in, actually) to view the message traffic that goes on behind the scenes from the browser to the server? I saw this one in action but I forget its name. And I think, for the FireFox broswer, you ca...

CSS: IE7 Selector

How could I select IE7 with pure (valid) CSS? ...

Internet Explorer: drop down does not display option font family

#select-arial { font-family: Arial; } #select-verdana { font-family: Verdana; } #select-geneva { font-family: Geneva; } #select-sans-serif { font-family: Sans-Serif; } #select-courier { font-family: Courier; } #select-monospace { font-family: Monospace; } #select-georgia { font-family: Georgia; } <select name="font_select"> ...