browser

Components in module disappear when browser is resized (Flex 3)

We have this Flex app built on Builder 3 and we're using SuperTabNavigator from FlexLib to have some modules displayed. The thing is, whenever the user resizes the browser window all the contents on any tabs open simply disappear and there's no way to get them back. This only happens the first time, so if you close these 'broken' tabs an...

Javascript behaving differently on Mac and PC? I know it shouldn't...

I've created a pagination script that takes a long block of text and breaks it into pages. First the text is loaded into a div with the id #page. Then the script measures the height of #page and calculates how many pages it should be broken into to fit into the div with class .detailsholder. The div .detailsholder is cleared out, and th...

JavaScript and jQuery scrolling issue in all browsers

Hi, I just launched http://tweetmp.org.au/ with a stack of new features, including the MP Spotlight you can see on the Homepage Every few seconds, the following code is run, // get the next it var nextId = ids[Math.floor(Math.random() * ids.length)]; $.get('/GetSummary?id=' + nextId, function(result) { if (result) { ...

Input Box inside an iframe

Hi, I have an input box inside and iframe. If i type and press the back key to erase the text, the back key event is taken as browser back and goes to the previous page. What could be the cause.? ...

Self-signed certs -- helping users know they need to add root CA to trusted cert store

I have a desktop product which uses an embedded webserver which will use self-signed certs. Is there something that I can put in a web page that would detect that they haven't added the root CA to their trusted list, and display a link or DIV or something directing them how to do it? I'm thinking maybe a DIV that has instructions on ...

CSS - Do non-IE browsers support the "filter" attribute?

IE5.5+ has supported the CSS attribute "filter" where you convert a color image into grayscale using just CSS. filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); Do other browsers support a similar CSS tag without using JavaScript? ...

How do I make Javascript beep?

I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea. ...

Input background colour destroys styling?

I am creating a form which is validated under jQuery Validation. I want to apply a light-red background colour to inputs which are invalid and need to be corrected. When I apply background-color: #FFCCCC; to the input, the attractive styling seems to be removed and a hard border replaces it. For example, with a text input in Firefox: ...

What browsers only support SSLv2?

Hi, What browsers only use SSLv2? I'm planning to disable SSLv2 on our web server, and would want to know what browsers will be affected. I can't find anywhere what SSL versions Firefox 1/2 and IE6/7 support. Thanks, Kenneth ...

jQueryUI Tabs - Caching Images

I have a form split apart throughout 4 tabs. One of the tabs contains photos if the user has uploaded some. Under each photo is a button to delete the photo. It performs an AJAX call to delete the photo and load in a new input[file] field that the user can use to upload another photo. This works fine. The problem is after the user uploa...

How can I determine what font a browser is actually using to render some text?

My css specifies "font-family: helvetica, arial, sans-serif;" for the whole page. It looks like Verdana is being used instead on some parts. I would like to be able to verify this. I've tried copying and pasting from my browser into Word, but it's not preserving the font. Is there some way to determine which font is actually being us...

is it possible to use ant to detect browser type and application version from a webpage?

I'm trying to use it for my cruisecontrol report so it will show the browser type and the version of my webapp, which can be found on the initial page ...

Performance issues in javascript onclick handler

I have written a game in java script and while it works, it is slow responding to multiple clicks. Below is a very simplified version of the code that I am using to handle clicks and it is still fails to respond to a second click of 2 if you don't wait long enough. Is this something that I need to just accept or is there a faster way t...

How can I execute Javascript function before Page load?

Hi, I am using a hidden field 'Isjsenabled' to detect whether Client's Javascript is enabled or disabled. If Javascript is enabled, Javascript function will be fired and it will set hidden field's value to 1. I want to check the hidden value from server side Page_load. But the problem is Javascript gets fired after Page load. Do you ...

Basic Browser compatibility issues. Please help!

I would like to know about the basic compatibility issues in the major browsers (Internet Explorer, Chrome) when compared to Mozilla Firefox, such as: Text Allignment, Color, Font Size, Tool Tips, Paragraph Allignments, Text Bold, Shapes other than images, Line overlap, Table visibility Thank you! ...

Flex - Change Browser

How do I change which browser Flex uses when I run my project? ...

Resizing images and performance

I have an image that is around 1200 x 400 (if I remember right), and is about 50kb in size. I use the image in a header for a website, but I constrict the height of the image to 100px in order to make it fit my header. <asp:Image ID="imgLogo" runat="server" ImageUrl="~/Images/AFact.jpg" Height="100px" /> Is this a bad practice? Does ...

Browser-native JSON support (window.JSON)

I have seen references to some browsers natively supporting JSON parsing/serialization of objects safely and efficiently via the window.JSON Object, but details are hard to come by. Can anyone point in the right direction? What are the methods this Object exposes? What browsers is it supported under? ...

SWT AuthenticationListener Eclipse

Has anyone ever actually used the AuthenticationListener class in SWT? I downloaded the zip file named "eclipse-jee-galileo-M7-win32.zip" and according to the eclipse site this listener is available as of M6. When I open my project in the IDE this class is not there, nor is any other Authentication class (i.e addAuthenticationListener, A...

Small, portable web browser library?

I am looking for a small and portable web browser to embed into my 3D engine. Basically, I need something small and fast that can render into a graphical buffer and take my input for links and stuff. It would be great if it could do JS as well. So far I've looked at Gecko and Webkit and Webkit is the winner so far (Gecko is way too huge...