browser

Find simultaneous connection through wireshark

Hi, Just finish reading Steve Souder's blog post related to max. simultaneous connection allow on modern browser. I wanted to see for myself on how many simultaneous connection firefox uses to connect to our company web site. In Steve's blog, in mentioned that he was able to find out the number of simultaneous connection through some ...

Spring Security Concurrency On Different Browsers

Hi. I have a web application using spring webflow and spring security. I have a problem with concurrency and here's the scenario. When I log in an and go to an edit page, and when my account was already restricted for that operation, I am not supposed to be able to perform the operation already. I see that since my ROLE save in the sess...

How to add even handler to the browser/How the toolbars handle the events?

How does the toolbars work across all the browsers? For example, in GOOGLE side wiki, how is the selected text is available to the side wiki? who will handle that event? What is required to be done, if an action like side wiki has to be implemented and how to make it available to a group of users? To be exact, I am trying to mimic the...

Website shows elements in different places - same browser - different machines

I have this website that I'm making for someone (immo-deal.be) and it shows certain elements in different places on different machines, but the browser being used (IE 8.0) is exactly the same. I don't understand how that is possible? Anyone have an explanation? Main element that moves is the flashing text moves up and bottom grey text...

set browser locale in Internet Explorer programmatically

Is there a way to set the Internet Explorer locale (accepted languages) programmatically. I have a small application which is embedding Internet Explorer and I would like to give the use the possibility to change the locale when clicking a simple button. Is there a way besides tweaking registry and calling SendMessageTimeout(HWND_BROA...

URL redirection: Server side redirection to a directory/folder in IE

Hi experts! I'm implementing a URL shortener like bit.ly. For this, I have a Java servlet backend which does a response.redirect(targetURL) for every redirection request. This works fine for HTTP requests, but I'm having a problem with file:// protocols. The problematic case is this: The target is a directory (such as file:///N:/somef...

How does Yahoo Mail make the back button traverse through previous clicks in their UI?

Try the following case: Log on to Yahoo Mail. Click Inbox. Click Drafts. Click Sent. Click Spam. Click Trash. Observe the browser's back history menu -- these different "pages" are not listed. Now click back button multiple times-- the browser cycles through each of previously clicked "pages". (Note that "Forward" button is not availab...

How can Google Chrome isolate tabs into seperate processes while looking like a single application?

We have been told that Google Chrome runs each tab in a separate process. Therefore a crash in one tab would not cause problems in the other tabs. AFAIK, multi-processes are mostly used in programs without a GUI. I have never read any technique that could embed multiple GUI processes into a single one. How does Chrome do that? I am a...

Blinking minimized browser

when my single IE instance is opened then minimized browser is blinking but while setting task bar property "Group similar task bar button" and if multiple IE instances opened then blinking is not working. i have written follwoing code for this.. Response.Write("<script language='javascript'>"); Response.Write("var oldTitle = document....

It seems a browser ( or is it visual studio? ) is caching a stylesheet and thus any changes I make to...

Hi I’m using a stylesheet as part of a theme and it seems that both IE and Firefox ( or perhaps VS express edition) are caching this stylesheet, since any changes I make to a stylesheet ( such as changing attribute values etc ) aren’t reflected on the displayed page. Any idea how to prevent browser or visual studio from caching this ...

Part 2. of developing for Chrome

I have made the lovely discovery that Jquery corners are not working on Chrome. Any solution for that? I just figured out that when I turn of my config.js file that holds this (rounded corners functions): $(document).ready( function(){ if(navigator.appName!="Microsoft Internet Explorer") { $('.round_10px').corners("10px"); ...

Creating a browser type application for iphone

I would like create an application similar to the safari browser, What is the best way to start off with? I want the user to enter a web address on a field (may be UITextField). The application should open up that page, preserving the view of the textfield. What is the method to follow to implement this? ...

Mobile minibrowser: how to reload image while maintaing page offset position?

In mobile web minibrowsers, it seems that the window object makes no sense since there's only one window to show. Therefore, things like window.pageYOffset=320 make no sense (as far as I can tell). Given a simple example such as a map zoomin/zoomout such as <html> <head> <title>zoom.html</title> <script language="javascript"> var zoom...

What browser(s) does Silverlight 3 and/or 4 run under?

Here is an easy question. What browser(s) does Silverlight 3 and/or 4 run under? I know IE is one of them. ...

Connection and event Sink implementation of Browser(ie, mozilla and google chrome)

how to implement event sink to enable the developed application to listen to event made by this three browsers: Internet explorer, mozilla firefox and google chrome? the application is a stand-alone application running in a network.. thanks!^^ ...

Opening a url in a non-default browser in a cocoa app

How can a cocoa application open a url in a browser other than the default browser? NSWorkspace doesn’t appear to offer any method for this. ...

Problems with files on separate domain not loading for random periods of time

I have a separate domain name for static content such as images, js files, and css files. I load this static content on the main site from this other domain to double the amount of concurrent connections the browser makes to load the page faster. This seems to work and I haven't had any issues myself, but I've been getting e-mails from...

enabling drag and drop on a touchscreen mobile device

Hello all, I just recently got an android phone and found that the drag and drop on my site doesn't work! I understand why it wouldn't, but has anyone found a solution to this? I'm using JQuery to implement the D & D... ...

How do I allow a user to browse/choose a file for my app use in Android?

I have an app where the user can choose a profile pic using images stored on the phone or SD. Do I have to write my own file explorer for this? I've seen a couple examples on anddev, but wasn't sure if there is another way. Thanks. ...

Using window.name as a local data cache in web browsers

I was reading about cookies and other related client-side storage options, and read about using window.name as a data cache of sorts: http://en.wikipedia.org/wiki/HTTP_cookie#window.name While it certainly has things that make it less desirable - and I won't sugar coat it, it is definitely a hack in the most true sense of that word - i...