browser

If I use Unicode on a ISO-8859-1 site, how will that be interpreted by a browser?

So I got a site that uses ISO-8859-1 encoding and I can't change that. I want to be sure that the content I enter into the web app on the site gets parsed correctly. The parser works on a character by character basis. I also cannot change the parser, I am just writing files for it to handle. The content in my file I am telling the ap...

Javascript Memory Limit

Hey Guys, I was wondering if there is a "maximum" of data a javascript application can store. I guess this is handled by the browser and that each one has it's limitation? Am I guessing right? Wrong? If there isn't a limit, will a page file be created (wouldn't be very secure I guess). ...

Create your own custom browser

Hi, I want to shape my own browser or at least modify a existing one so far that it meets my needs. I want a fast browser (starting and running, not necessarily faster rendering) without any stuff I don't use and simple productive navigation (like Firefox + Vimperator + Tree Style Tab), only much more integrated into each other and a d...

Should I still care about IE6?

Possible Duplicates: IE6: To support or not to support. Do you plan to support IE 6 on your future projects? I've finished the design and about to code HTML for a website that will use fancy form elements and effects. I'm wondering if I should support IE6? What are the latest stats? Do you support IE6 still? ...

2 different php request at same time per user

I have a website which has 2 pages , (home_page.php and action_page.php)Action page takes aprx. 2 minutes to completely load (server side takes 2 minutes) . But if user clicks to home page link while action page is loading , browser does not go to home page , until action page is completely loaded . First of all what is the reason of thi...

How to detect if a user had javascript disabled?

I was talking with a friend about users who do not have javascript enabled in their browser and what could be done to show them a "no-javascript" version of your website. Is it possible and how can it be done? Thoughts? ...

need a web browser in my desktop application

part of the specification of this desktop application is to have a mini browser built in, so that you can enter URL, and navigate the site as you would on a normal browser. Access to the browser page's DOM is required, should let me programmatically change the rendering view of a page, should be cross-platform, renders javascript JDIC s...

How to Authenticate Gmail like Google Talk to open new emails in browser

I can read new emails using gmail pop3 in c#, I'm looking for a way to open each one of new emails in browser just like Google Talk When you receive new email Google talk notify you and if you click on message, you can read your email in browser new window. Any Idea? ...

download file from the android web browser in sdcard?

HI. I have a Android application in which I want to download file from the web browser file link. But I don't know how can do it? Help me. ...

How do to check to see if the user has a Google account.

Is there any safe way to detect, on a web page, client side (JS), whether user has an Google/Yahoo/Live/? account? I know about some suspicious ways to do this by styling visited links and then sneaking on computed style attribute, but it's more of a hack, Mozilla and maybe other are planning to crack down on this, as it might be abuse...

What are the downside of not having an index.html file to some directories

Hi, I'm curious what are some effects/downside of not putting an index.html file to your directories (e.g images). I know when an index file is not present to a directory, files inside that directory are no longer private and will be visible to the browsers when point (eg yoursite.com/images/). Aside from that what are some big effects ...

How to open multiple pop up browser windows from ActionScript?

How to open multiple pop up browser windows from ActionScript? ...

Calling an svn update from a php script via a browser is not working

Hey guys, I have two scripts. running an update and calling shell_exec('svn update') and shell_exec('svn st') running a mysqldump shell_exec('mysqldump params') The svn script is not running the update command, the svn st is printing results but not the svn update I tried to declare parameters when calling svn update eg 'svn upda...

Should we have Browser Side Validation

For a back office application which is going to be used in house and users trained to use it, does it make sense to have browser side validation. After training users will seldom make mistakes. These mistakes would get caught at the server side. Also bearing in mind that the bandwidth availability is a lesser concern I feel we should avo...

Very strange client/browser issue

One of our clients has logged a very strange issue with us- We launched a preview for their website, but when it's viewed on their main PC, peculiar things start to happen... At first, the stylesheet wasn't being found, and so accessing any page resulted in one void of all styles. We sent them a direct link to the stylesheet, which was ...

Production ready alternative to Microsoft Doloto (Javascript minifier/prefetcher)?

As you surely know Microsoft Doloto is tool which profiles you javascript code as it actually runs on the page and splits it in to two files: one file will be statically included in the footer of the page which contains stubs for all functions and loads the actual implementations (in file 2) in the background (under the assumption that o...

How do you inspect your own session hash when visiting a website?

I am interested to see what people are storing in my session and cookies when I visit websites. Is there any way to see what's in there between request and when I'm on pages in Safari, Chrome, or Firefox? ...

Set As Homepage On Android Browser

Is there a script for the Android Webkit browser thats make a site "homepage" Or in other words can I make a "Set as homepage" button ...

Browser, upload large file

I'm looking for a way to allow a user to upload a large file (~1gb) to my unix server using a web page and browser. There are a lot of examples that illustrate how to do this with a traditional post request, however this doesn't seem like a good idea when the file is this large. I'm looking for recommendations on the best approach. Bo...

How to retrieve the content of <script src="myscript.ms"></script>

if it was inline instead of src it would be easy to use innerHTML however it returns blank...so i assume the src attribute makes the content of myscript.ms not go into the dom as it normally does for inline script. How can I access the data in myscript.ms file short of using some internal browser extension method? Thanks. ...