firefox

Internet Explorer lags w/ IQueryable datasource. Firefox and Chrome A-OK. Video proof supplied.

I'd like to say it's the query, but it isn't. Even when we go through it step-by-step, the queries finish without a hitch. Even the .DataBind() method doesn't APPEAR to cause the lag. Here's how I know it has to do with my IQueryable as the binding source: Old code: Call a stored procedure using SqlCommand and use SqlAdapter to fil...

Programatically access webpage error details in browsers

Is there some way to access webpage warning/error details using JavaScript? For instance, errors in IE show up in the bottom left corner like so: I would like to able to access the details of this error (in IE as well as other browsers if possible) using JavaScript. Any suggestions? EDIT: I'm not looking for debuggers. I want to a...

JQuery toggle/slider flicker in Firefox

Hmmm... I have read about this issue on various other threads here on stackoverflow but am still experiencing the problem on my work in progress (without quite as much exciting jQuery involved) www.thebeverley.com Simple toggle that expands fine but flickers on collapse - you will need to scroll down to use the same button to collapse...

Firefox ignores percent height on image

I'm developing a Web site for a professor and I'm having an issue with my CSS in Firefox. The Web site was designed to be fluid width/height so it would fill the screen on any resolution, so because of that I'm using a lot of percentages for heights and widths. I've run into a problem with images however. http://projects.mediabounds.com...

Mac: reloading document in Chrome or Firefox?

How can I tell Chrome or Firefox to reload the document in the top window? Here's what I'm using for Safari: osascript -e ' tell application "Safari" activate do JavaScript "history.go(0)" in document 1 end tell ' ...

How to edit and see live CSS effect in IE8 like we see in Firefox > Web developer toolbar > Edit CSS function?

How to edit and see css effect in IE8 like we see in Firefox > Web developer toolbar > Edit CSS function? Where is similar function in IE8 developer toolbar or does any other IE plugin have this type functionality? ...

open new window from firefox extension gets Access denied

I'm writing a firefox extension. In this extension i need to open a new tab to display some analytics and data. I have a template html file which i placed in my chrome/content folder. When i try the following code: var w = content.window.open("chrome://myplugin/content/search.html","My Plugin"); i get the following error: Access to...

Firefox Mac alignment issue

I wrote a menu where the total width of the buttons should be always the same width of the menu bar. So i take the whitespace and devide it over the buttons. It works on: Windows: FF IE6 IE7 IE8 Mac: Safari Chrome But it doesnt work on Firefox on the Mac can does anyone have an idea? The example can be found: http://www.bobkarreman...

Firefox doesnt print all contents of page

Hi, When viewing specific htmls that has several iFrames, firefox/IE8/safari doesnt print all content. The page consists of 3 iframes. One of the iframes seen blank in print (and also in print preview). What is the cause for this and how can I fix it? In IE7 this works fine. actual content: Content that is printed in firefox(or print p...

What does the CSS specification say is correct way to measure an elements width?

Chrome seems to measure an elements width from the inside of the margin including padding but Firefox and IE measure the boxes width where the border is (not including padding but inside margin). measuring the elements width from the border makes sense to me and is also helpful when coding because turning on borders will let you see the ...

document.getElementsByTagName("*") Or document.all

document.getElementsByTagName("*") It works for IE/FF/Opera, But doesn't work for Chrom and Safari document.all works for IE/Chrom/Safari, But doesn't work for FF. How can I deal with it? Many thanks ...

define the height of an image in xul extension

My extension is an overlay that has some images inside a toolbar. I need to display these images small (about 15px), but they render always at the same height of toolbar. I've already tried to define height and maxHeight of image and of hbox where them are palced but it doesn't work. here is the piece of code: ... <toolbox id="navigat...

jQuery easing animation of window scroll in Firefox (bug or my bad?)

THE EXAMPLE First and foremost, here's my code and problem: http://www.nathanstpierre.com/MBX/showoff.html THE ISSUE So what I'm seeing is when you click the buttons on the left, the window scrolls to the appropriate heading. In every browser but Firefox (including... IE gasp) this is very smooth. However, if you reduce the height of th...

Why Firefox keeps negotiating kerberos service tickets ?

Hi, I ran some tests on Kerberos and found out some strange behavior related to Firefox and Kerberos. I have a server running Apache + mod_auh_kerb which is configured to check kerberos credential when serving requests from clients. Kerberos authentication is performed and user without valid credentials are rejected. However, I do not u...

Can Firefox code trigger any functions in the extension?

I have modified some code inside my Firefox. Just add on some extra functions for my isolation network. Besides that I also want to create my own FF extension for this particular purpose. I just need some information: Can the code inside my Firefox, call any function Javascript declared in my extension? ...

How to refresh parent page using javascript / asp.net in mozilla firefox browser

window.opener.location.reload(); is working fine with IE but not refreshing parent page in mozilla firefox browser.. please tell me how to refresh parent page in cross browser. i have got this function : Shared Sub CloseMyWindow() Dim tmpStr As String = "" tmpStr += "window.open('','_parent','');window.close();" ...

Firefox 3.5 on a Mac and @font-face

Hello all, Im having a problem with @font-face. It actually works flawlessly on Safari, internet explorer 7+ and Firefox for windows but not at all on firefox for mac. I'm using code from the bulletproof @font-face article Here's my Code: @font-face { font-family: "QlassikMediumRegular"; src: url("../fonts/Qlassik_TB.eot");...

Button with location.href doesn't work in Firefox

Hi, I have a textbox for search and a button that redirects to given value of the textbox. It works well except for firefox 3, which ignores the function completely. Any ideas why and how to fix it? I have already tried window.location instead of location.href, but it again works well in all major browsers but firefox. My code: <%=Html...

Cross-window Javascript: is there a right way?

Problem I'm trying to make a method that passes objects to a similar method in a popup window. I don't have control over the code in the target method, or the object passed in. The target method currently serialises the object, using JSON.stringify where possible, or instanceof Array. The first problem with this is a bug in IE8 (see ...

Use the TAB key to navigate to HTML BUTTON or SELECT element in Mozilla Firefox.

How do I do it? I've tried setting the tabindex attribute to no avail. ...