browser

Android Browser Extensions

Is it possible to write "extensions" for the webkit based browser found on Android devices? i.e. extensions akin to Google Chrome's ? ...

Preventing iframe caching in browser

How do you prevent Firefox and Safari from caching iframe content? I have a simple webpage with an iframe to a page on a different site. Both the outer page and the inner page have HTTP response headers to prevent caching. When I click the "back" button in the browser, the outer page works properly, but no matter what, the browser alway...

browsing caching of css and javascript files ?

Hello friends.. I want to konw whether the browser caching of css and javascript is automatic with php or v hv to do it manually with code.. and wt are the advantages if i manually cache the css and js files to client browser.. using code.. ?? If not cache wt will happened ?? ...

How to prompt browser to display open/save dialog box using jquery?

How to prompt browser to display open/save dialog box using jquery? ...

An Erroneous SQL Query makes browser hang until script timeout exceeded

I have an admin page in a Classic ASP web application that allows the admin user to run queries against the database (SQL Server 2000) Whats really strange is that if the query you send has an error in it (an invalid table join, a column you've forgotten to group by etc) the BROWSER hangs (CPU usage goes to maximum) until the SERVER scr...

What are the requirements for HTA files?

They seem to open in an internet explorer type window, does anyone know: How long have HTA files been around? Have they been around since Windows 98? Do they rely on Internet Explorer being installed, and/or a certain version of it? If you choose another browser on the browser selection screen update for Windows 7, will HTA files still...

Unbind Key Presses

I'm making a game that involves, like all games, key presses. Only left and right arrow and the Space Bar. They work, but the browser is pre-set to scroll left, right, or jump down on those keys. Is there any way to unbind those keys in the code? Thanks. ...

Java web browser slow

org.eclipse.swt.browser.Browser I load the embedded browser into Java and have it load a page. It seems to load really slow... is this an issue with the page caching? What can I do to speed this up? ...

Can you create a HIPAA compliant Amazon S3 Web Application?

I am facing some questions when trying to design an S3 application using ASP.NET MVC and trying to stay HIPAA compliant. My initial plan was to require an SSL connection to my web server, encrypt the images on my server, then send them to s3 using my private keys. Here's my obvious concerns: You cannot store unencrypted images in any...

How to determine the browser of the user using PHP?

How to determine the browser of the user using PHP? So that if the users browser is IE then the variable $alert="onbeforeunload" and if it is not IE, for example Firefox (else) then $alert="onload. Help is much appreciated. Thanks Also please note that I can not install browscap.ini on my PHP server. ...

Javascript: Setting vendor styles?

I'd like to set vendor styles with Javascript, something like this: elem.style.mozBorderRadius = '5px'; Is this possible? If so, how? ...

Controlling a browser using Python, on a Mac (Firefox or Safari or Chrome/ium or Opera)

I'm looking for a way to programatically control a browser on a Mac (i.e. not IE) using Python. The actions I need include following links, checking if elements exist in a page, and submitting forms. Which solution would you recommend? Thanks! ...

Invoking browser on streaming media URLs

I have a dirt simple little function that launches the blackberry browser on a streaming media file in order to launch the built in media player. Everything works fine but there is this annoying dialog every time from the browser asking me if I want to save or open the file. My answer is always "open" the file so is there a way I can mak...

Detecting BlackBerry and Iphone Browsers in JavaScript or PHP

Hello, i want to redirect peaple who goes in my site to other page if they are using a mobile browser with a php o java script. Thanks ...

Free java or flash file browser for photogallery

Hi. I'm about to develop a small web gallery, where it's supposed to be possible to upload several pictures at a time and then add some info abut the pictures.So I need a free java or flash local file browser that can pass me some info of the pictures that gets uploaded so that I can create some SQL entries for each picture. The platfo...

Is there a way to enable Unicode characters in all browsers on Windows XP?

I'd like to use unicode symbols within my website (especially Dingbats). Is there any way to enable this inside all (or at least some) browsers in Windows XP, without having the user to adjust any of his settings? I use the HTML5 doctype with the charset configured to UTF-8: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> ...

how can i change my default browser in android emulator

how can i change my default web browser in android emulator.Can somebody help me out with steps to be followed.. Thank u in advance ...

How should a web developer approach building a Browser toolbar ?

I am a web developer looking to build a browser extension. What is the best way to build browser extensions using web technologies (HTML, Javsacript, etc). We are targeting IE and Firefox only. Can IE browser toolbars be created using HTML/Javascript? ...

which browsers do not send referer information?

which browsers do not send referer information? ...

How to encode a URL for passing it as a GET parameter

I load a JavaScript file which takes current page's URL as a parameter. Here is the code I use: document.write(unescape('%3Cscript src=\"' + _vis_opt_protocol + 'domain.com/js.php&a='+account_id+'&url='+encodeURIComponent(document.URL)+'&random='+Math.random()+'\" type=\"text/javascript\"%3E%3C/script%3E')); I thought encodeURICompone...