firefox

session variable on a Wordpress site changing only in firefox

Ok, so this is the weirdest bug I have ever run into, hopefully I can explain it well enough. so, if you go to Seaandbescene.com then click on one of the province links at the top(nova scotia, newbrunswick, etc.) then click one of the categories below(entertainment, shopping etc..) it should remember what province you are in because I s...

Delete certain form data (Selectively) on IE8 or Firefox

I would like to delete certain autocomplete suggestions (from history) on form data on IE8 (as well as in firefox). on the username of a webpage I mistyped my userid and it is coming every time I try to type my name. The autocomplete gives two items one my right id and second the wrong id which I did once in the past How do I selectiv...

asp.net mvc client side validation password field in firefox

Asp.net mvc 2 seems to not clear a required validation error for a password field in firefox. in both firefox and chrome: submit the form client side validation works and it says 'password is required' In chrome, I add a value to the password field and the client error is cleared. In firefox,I add a value to the password field and the ...

explorer-- 1)contents moves left 2) can' see footer and header

Dear friends! first: thank you in advance. My site http://note-to-god.com/ works fine on firefox. but when I open it at explorer. I can't see footer and header images. and contents move to the left side, over the menu Any ideas? thank you ...

jQuery keyboard navigation breaks on Firefox

The following code reveals a div on a keypress event of '?' (191). Works perfectly with Google Chrome but refuses to work with Firefox. Any ideas? $(document).keyup(function (e) { if(e.which == 16) isShift=false; }).keydown(function (e) { if(e.which == 16) isShift=true; if(e.which == 191 && isShift == true) { if ($('#keyboar...

ajax problem in firefox while retrieving <select name='value'> value

dear all, i'm getting this problem with firefox and not with IE. In first combo, i'm getting roles: <tr> <td>Select Role:</td> <td> <select name="usrrole" onChange="showuser(this.value)"> <option value=''>Please Select</option> <?php $rle = "select * from role_table"; $dorle = mysql_query($rle); while($data = mysql_fetch_arra...

Inline heading with background color using @font-face - not working on Mac in either Safari or FF

I have an inline heading (h1) with a background-color on the heading, but on Mac OS in both safari and Firefox it does not seem to stretch around the font. With a websafe font it works fine. Line height is set according to the font-size. Any suggestions? See visual expamle: http://www.flickr.com/photos/hegerokenes/5038724235/ @font-f...

CSS z-index issue: works in Firefox, but not Safari?

I am trying to show a specific table row on top of an overlay. It's working in Firefox, but not Safari. I don't understand how that can be possible since Firefox and Safari usually render these types of things the same. <body> <style> .overlay { position:absolute; width:100%; height:100%;...

Flash Of Unstyled Content (FOUC) in Firefox 3.5+

We've reached the end of our tether here trying to overcome a nasty and intermittent FOUC in Firefox 3.5.x+ for a new release we're working on. We've tried: Disabling Javascript in FF Using Quirks mode rendering by removing the DOCTYPE Moving from @import for additional CSS to <link> Switching concatenation on and off Removing CSS fil...

when viewing a page in firebug, can I see which event fires when I click a button?

I'm viewing a page, and want to know which event is fired when I click on a button, and I want to trace through the .js files to help me learn what is going on. Is this possible? ...

Do I need a Firefox plugin or an extension?

I need to read every url that loads into the navigation bar of firefox (either by type in or by clicking a link), pass them through a filter and decide if allow the url to open or not. I have some experience on firefox extensions but not with plugins. Do I need to do it using extensions or plugins for this? I currently have a BHO for ...

Keep Firefox from displaying plugins needed for an html object

I have a Firefox plugin that adds some optional features to my web app. I'm using an object tag in the html to embed the plugin. However, if a user doesn't have the plugin Firefox displays the message: Additional plugins are required to display all the media on this page. Since the plugin is just for optional features I don't want ...

How do I capture when a finger touches the screen and when a finger is removed from a screen on touchscreen device

Hi, I am developing an app for a touchscreen and I would like to capture the equivalent of the mouse down and mouse up events. For example, when the user has their finger touching the screen, a javascript function will execute, but when the finger leaves the screen function stops. I am using firefox 3.5, with the jQuery framework for...

Firebug : How to make net tab persistent?

If I load new web page, the content of the old web page in net tab would all disappear. Is there a way to make it persistent over different web page? PS: I'm using Firebug 1.5.4. Thanks in advance. ...

LocalStorage Firefox 3.6

According to everything I've read, Firefox 3.5+ supports localStorage. And yet I'm seeing the alert (failing) in Firefox 3.6. Do I have some strange settings in my Firefox? Any ideas? function supports_html5_storage() { try { return 'localStorage' in window && window['localStorage'] !== null; } catch (e) { alert(...

Web site on IIS7 asking for windows authentication only when using firefox and not explorer?

Hi, I have a web site on IIS7 and it asks for windows authentication when I try to access it with firefox but it works fine if I use Explorer. With explorer it uses the normal form authentication... how is this possible? ...

Jquery hide error in Firefox

Hello, I'm working on a page with mutiple divs that hide via the following jQuery code: // Special Offers Page $(".details").click(function(){ $(this).parents("div.special-offer").children(".hiddencontent").toggle(); return false; }); Here's the page for who needs to see the entire code: http://www.daraayu...

Why signed applet couldn't write files to the client file system using firefox?

I have an applet (java) that writes some files to the client file system. In Chrome and IE work perfectly and firefox too, only if I run it with Administrator permissions . (righ click -> Run as administrator). This solution don't look proper for a enterprise application. By the way the applet is part of a big enterprise web applicatio...

Background images not showing in Firefox

Hi all, I have a firefox-specific issue with this page : http://www.buzzarab.com/feedback.php It renders fine in IE, Safari, Chrome and every other browser invented by man, but in Firefox the background images do not show (The 'Feedback' link on the left and a white box around the content). Any help appreciated, I'm completely stumped...

Firefox messes up form fields values

Hi all! I have a list of exercises which I want to edit using form inside Jquery-ui dialog. I initialize dialog on page ready: $('#exercise-edit').dialog({autoOpen:false}); Then on each exercise click I do ajax call and it fetches exercise data and populates it using "populate" plugin function showEditExercisePopup(id){ $.getJ...