internet-explorer

Autocomplete hitting enter vs clicking different behaviour on IE7 (jQuery 1.4.3 + jQuery UI 1.8.5)

here is my code: $(document).ready(function() { $("#OperatorID").focus(); $("#PartNumberID").autocomplete({ source: "ajax/getData.php", minLength: 6, delay: 100, select: function(event, ui) { $("#PartNumberID").val(ui.item.value); $("#boxID").val(ui.item.box); $("#PackageID"...

Extending JQuery - IE Error Only - Object doesn't support this property or method

IE only bug... go figure... I get Object doesn't support this property or method when I do this... $('#the-content').showAsModal({ 'leftPosition': 100, 'topPosition': 200, 'centerX': true }); I extended jQuery like this... (function ($) { $.fn.showAsModal = function (options) { var settings = $.extend({ ...

Finding non-secure items in internet explorer

I was wondering if there is a tool, bookmarklet or something out there that can help me find non-secure items on a page. When I view source and search for http:// on the https page in question I find the following items: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.d...

Jquery Load based on hash tag working only in Safari

Hello There, I am using a jquery function to take the value of the hash tag in the URL and load that URL into a div id'd 'inload_content'. As seen at http://www.divethegap.com/update/community/ (# When testing only use the 2 test videos at the bottom as the others are not connected to URLs yet. In Safari this works perfectly both on OS...

code for highlighting current page with CSS not working on IE

Hi All the following code for highlighting current page works fine in FF but no luck with IE. Is there an known hack? I've googled a bit but couldn't find anything. .navigation a:link {color: #FFFF00; text-decoration:none;} .navigation a:visited {color:#000000; text-decoration:none} .navigation a:hover {color:#c1753e; text-decoration:...

My site crashes Internet Explorer!

When I try to open my site on IE (development, environment, or online), it crashes every time. This is my server readout upon entering the home page (it actually crashes on any page view after this): Rendered shared/_footer.erb (0.0ms) Rendered welcome/index.html.erb within layouts/index (179.0ms) Completed 200 OK in 204ms (Views: 203.0...

Html page edited by the server after upload ?

It's a continuation of this post : http://stackoverflow.com/questions/3949941/what-throws-internet-explorer-into-quirks-mode . I have a webpage, built on Django LFC CMS ( http://snow4life.pl/ ). Problem is that when I upload my files to server, the default templates (http://bitbucket.org/diefenbach/lfc-theme-1.0/src/tip/lfc_theme/templ...

Internet Explorer empty div link

I want to make an empty div react to click. HTML <div id="closeButton"></div> CSS #closeButton { height:100px; position:absolute; right:0; top:0; width:100px; z-index:1000; border:1px solid blue; } Javascript $('#closeButton').click(function() { alert("yo"); }); This works perfectly in Firefox, but not in Internet Explore...

removeAttr("selected") showing error in IE6

I have two listboxes set with multiple property and on adding the items from first to second, I don't want the selection on the second listbox. I wrote the code like this $("#<%=lbCommcatTo.ClientID%> option").removeAttr("selected"); It worked in IE7 but not in IE6. Can anyone please give me a solution? The html is <table cellspac...

Getting print cancelled notification in IE using IOlecommandTarget::QueryStatus.

Hi everyone.. Is it possible to be notified if a user selects cancel button from the printing prompt in IE ? Basically I want a print-cancelled kind of notification. I read somewhere that IOlecommandtarget interface can be used to be notified for our own controls, but can the same be used for system controls like print ? Can anyone help...

Firefox shuts down with silverlight

I have two silverlight apps on the same page that use the same methods from the same classes on page load. This causes problems in firefox (firefox doesn't respond and shuts down/crashes), but is okay in IE and chrome. Is there a reason for this? ...

How to add an Internet Explorer Behaviour file (.htc) from a different domain?

Hi! I'm redesigning my Tumblr blog and I use CSS3 Pie to add some eye-candy to Internet Explorer. The problem with this is that CSS3 Pie uses Internet Explorer specific files (.htc) that can only be served from the same domain as the HTML file, which is something I can't do on Tumblr. The thing is that without that file the website brea...

Transparent background, clear text?

Hey all, been banging my head against this one for a while. For a CSS redesign of a site I need a parent div to have a background-image followed by a p child with a transparent background, but foreground text needs to remain at 100% opacity. I tried making a 1px image of a semitransparent (40%) white, but it won't show up when used with...

swapping images of different sizes [Javascript vs IE]

Hello, I have the following simple preloading function which substitute an image "src" attribute with another image (an animated GIF "Loading"). The problem arises only in IE: if the "loading" GIF is smaller than the actual image src, that will be resized. For example if I have a square 100px image and preload it, the image is temporarly...

How to write a factorial function in Javascript using setTimeout or setInterval

Hi all, I asked a question a couple weeks ago about using setTimeout for a factorial function, but it was unfortunately with an unregistered account and I never got a complete answer. My main issue is that I'd like to write a function that calculates the factorial of a number but uses the setTimeout or setInterval commands. The impetu...

jQuery: IE returning empty for ID

I have a heartbeat interval which calls a function every few seconds. This function then in turn makes a JSON request to the server via jQuery, the server returns the JSON response and a success jQuery function like usual. Within the success function it does another jQuery function, a foreach for each id. From each id another function is...

It is possible to deactivate the InternetExplorer Silverlight Add-On with PowerShell?

Hello, it is possible to deactivate the InternetExplorer Silverlight Add-On? Later I want to open the Internet Explorer with the Powershell command: $ie = New-Object -ComObject InternetExplorer.Application ...

Typekit t & Internet Explorer 8 loading pages issue

On this website using Wordpress 3.0 & Typkit we have this problem: The pages seems to freeze for a moment everty time you refresh the page. This issue is ONLY with Internet Explorer PC. URL: http://marcomoutsourcing.com Any help is much appreciated. ...

Checking IE Window Status of a Manually opened IE Window

HI all, I am trying to script some actions on a web based application by using simple SendKeys in a .VBS script. The only problem i have come accross is the fact that i have to put Sleeps in the script to wait for pages loading. I was wondering if there was a was i could monitor an IT window and wait for it to finish loading instead o...

why IE keep sending NTLMSSP_NEGOTIATE even though I switch to use login form ?

I implement NTLM SSO, it works well, but when I want to switch to use login form, IE doesn't work: 1.SSO into my website 2.clear session and redirect to login page 3.key in username and password 4.submit and because the login i have bypass the SSO filter, so it works well in Firefox browser. But in IE, it still send a request with ntlmss...