browser

What is the best way to ensure that web-page contents are redownloaded from your web-site instead of using cached temporary internet files?

I have noticed that when updating my web content files (in this case, a silverlight XAP file) the browser does not detect that the file has been updated, and continues to reads the locally cached file. These files will only be updated rarely, so reading from the cached temporary internet files should occur most of the time. My question...

Force refresh on ajax request?

I have a script which at one point returns an image thumbnail using jquery built in java request. Every time the php function get called, this thumbnail gets updated, but keeps the exact same filename. Problem is that the browser caches the thumbnail and it looks like it never gets updated. Are here any techniques to avoid this? ...

How to preserve back button functionality for iFrames?

There are a few posts on iFrames and back buttons, but no conclusive answers. Here's another try. I have two iFrames on my page that load external content. (Yes, I understand the risks and complications with iFrames, but this is the only approach.) The site is similar to the Diggbar, only with two iFrames underneath instead of one. ...

How to parse html in a client-side script?

What's the best way to create scripts for a browser? I need to parse some html pages on different domains I am on windows and use firefox most of all. ...

Push data from local application to browser

I have c++ application to monitor local computer and a HTML5 webpage (offline support) to show statistics. At present my application send data through server to webpage, but it works only on online. Now I want to support full offline mode, so i need to push data directly to webpage to fire javascript events. Is this possible? And is this...

How do I control reloads when using the back button in the browser?

I have an asp.NET application which has a fairly heavy mainpage. The content of this mainpage is only rarely changed, except by actions on that same page. How do I make the browser retrieve the page from cache when the user presses the "Back" button in the browser, instead of contacting the server every single time, forcing it to render...

can we avoid browser's "remember password" when a user tries to log in to the system?

Hi I know that this feature is to enhance user experience (by not retyping their details every time) and users can tweak their browser settings, but is it possible to send some "headers" etc (or any method, I mean server side controlling) so that when users try to log into my site they dont get this "Do you want IE/Firefox to remember y...

Silverlight fullscreen limitations

Hello, When a Silverlight plug-in is in full-screen mode, it disables most keyboard events. They say it is for security reasons: is intended to minimize the possibility of unintended information being entered by a user What I don't understand is what is the difference of silverlight fullscreen or any web browser fullscreen? I...

Browser Compilation Error for Flex

Howdy All, I'm having an odd problem that isn't mission critical since I can use the command line with no probs. In my earlier post http://stackoverflow.com/questions/1141133/flex-web-tier-setup, I had problems getting the web compiler to work. Now that it's working I use this in a browser to compile: http://localhost/flex/topsight...

How well does JavaScript scale?

I was working on this carousel thing, using the iCarousel. It works pretty nicely with a few images, using MooTools. However when I added 70 pictures (around 30k each) it stopped working so nicely. Having spent some time poking around in the code of iCarousel it looked pretty decent and stable. So this got me thinking: is the problem inh...

How does copying and pasting non-breaking spaces compare in different systems/browsers?

Suppose you have an HTML document with non-breaking spaces ( ). In IE 6 - 8 running on Windows XP, when you select the non-breaking spaces and copy/paste them, they will be copied/pasted as "normal" spaces (U+0020). Does anyone know of any systems, browsers, etc., or combinations of, that will not exhibit this behavior. That is, th...

Identifying the browser at server side in php

I have a website. When the user clicks on a particular page (say identify.php) I want to find the type of browser the client is using. The browser might be mozilla, IE, opera, chrome or any other mobiles device such as SonyEricssonK610i, SAMSUNG-SGH-E370, SonyEricssonT700 or NokiaN73-1. Is this possible to detect the user browser? ...

Whats the best way to introduce decrypting and showing passwords in delphi.

A few weeks ago I lost my passwords for msn and more importent my company email, which change every 30 days or something, they are annoying because of there lengh and a I dont like writting them down. Anyhow I downloaded a so called password recovery tool and it worked well, but then spammed me for days with ads. My question is, how can ...

Detect IE6 with Jquery

Guys, I am trying to establish how to detect the IE browser in jQuery 1.3.X - now before you all write "its deprecated in 1.3.x!" - I know this. I have this code if (jQuery.browser.msie && jQuery.browser.version == "6.0") { alert ("This is less than IE7"); } else { alert ("This is greater than IE7"); } When running it in IE8 - IE...

Browser keep stopping with user breakpoint and opens visual studio 6 in debug mode

Hi, Following my last question (see: http://stackoverflow.com/questions/1184175/problem-in-hosting-activex-on-vista-in-a-visual-studio-6-c-application) I ran into a strange problem. I hope this’ll be a simpler issue to the experts here: Each time I run certain application like iexplorer or firefox, the Visual Studio 6 suddenly opens up...

How do I build my website in Firefox?

Hello, Here's an easy question. How do I configure Visual Studio 2008 to build my webpage in a certain browser? I really want to build in all 5 well-known browsers (IE, Firefox, Chrome, Opera, and Safari), but right now I am having to right click the actual html files and open them in different browsers. In dreamweaver, there is a sim...

How can I see what verison of javascript does my browser use ?

How can I see what verison of javascript does my browser use ? ...

Preventing an embedded applet from launching immediately?

Due to timing issues, I'm trying to prevent an applet from loading until a page is completely loaded ($(document).ready(...);). However, I'm using the java deployment toolkit to launch the applet, which naively uses document.write to push data to the browser. Obviously, this breaks horribly if I attempt to run the applet after the is wr...

Timeout behavior of different browsers?

I am writing an on line chat room based on AJAX/COMET. My design is: Request ----------------- wait -------------------------> send dump data ----------------- wait -------------------------> send dump data ----------------- wait -------------------------> send dump data ----------------- wait -------------------------> send dump d...

How to check whether the images are from cache

Hi all, How to check whether the images are from cache or from server. Since my home page contains 45 images. When I press F5, want to know whether the images are from cache or from server. I had added <%@ OutputCache Duration='120' Location='Client' VaryByParam='none' %> Thanks, Babu Kumarasamy. ...