browser

PHP switching tabs in browsers causes session not work and must relogin

Hello, I have a password protected area of a site that I use Sessions to allow the user to move from page to page of the protected area. However if I open new tab YET keep the other tab open (the one in the protected area) and then do somethings in the new tab and switch back then to the old tab I am forced to re login. I have tried set...

Universal add to bookmarks script?

Does anyone know of a script that I can use to automatically add a site to favourites upon clicking of a link for multiple browsers? Atleast Firefox, IE, Chrome would be good. If not, is there a way I can simulate ctrl+D through Javascript as I know that keystroke adds a site to bookmark in most browsers? ...

Programmatic way to search a page for the user in a browser

I am working on a search engine project that will point a user to a page from, say Google, and show them where their search terms are in the document. Most of us search Google and know that sometimes you have to CTRL-F to find where that word appeared on the page (especially on long pages). I know some browser plug-ins can help with th...

C# - Have your desktop application open the system browser in a specific webpage

Possible Duplicate: Open a URL from Windows Forms Hello! I have a C# desktop application and I want to be able to have a link in it that will open a new browser window/tab (on the system default browser) in a specific webpage. I've looked for this in the web but haven't found anything yet. Any help?? thanks... ...

Ways to make Javascript code hacking / injection / manipulation difficult?

Are there ways to prevent, or make it difficult enough, for someone to inject Javascript and manipulate the variables or access functions? A thought I had is to change all var names randomly on each reload so the malware script would need to be rewritten every time? Or are there other less painful ways? I understand that eventually some...

Is there anything like an audio equivalent for <canvas>?

I'm wondering if there are any plug-ins/libraries or awesome tools that would let me script sound/music with javascript in a browser in a similar way to how <canvas> allows you to script drawing and animations. ...

Oracle Browser Issues

Are there any browser issues with Oracle, specifically IE7, IE8 and Firefox? I.T. has told me that I have to build all my sites to support IE6 because IE6 works with their version of Oracle. They've said that some of their apps break on newer browsers. Can someone let me know if this is true or provide me with a link to verify this. Tha...

is there anyway to force a link to open up in IE, even if not the default browser

we have a website with links to a sharepoint. These features in sharepoint only work in IE so i dont want to open up firefox or chrome if that is the default browser. Is there anyway to have a <a href= "">My Link</a> force open up in internet explorer ? ...

How can I detect when a browser enters a stored password into web login

I have a website that detects when a user name and password has been entered, then enables the login button. The problem is if the browser enters the user name and password that it has remembered then the login button is never enabled. Is there a way in JavaScript to detect a browser entering this information? ...

Javascript working in Java web browser?

is this possible? i have made a simple web browser, it can view some pages fine, but most are messed up, i believe it can be because of this (javascript not enabled). For example this is how CNN.com shows up: http://www.glowfoto.com/static_image/07-181402L/5111/png/07/2010/img5/glowfoto here is my code so far: public class Browser exte...

Browser Detection

Hi, How can i detected the browser type in my silverlight application? for example i want to know if my silverlight application is running on IE or Firefox Or GoogleChrome... i'm using silverlight 4 and my programming language is c# ...

How to restrict Ctrl N combination in a browser window?

As per my knowledge we can disable ctrl+N key for new window with the following javascript code : document.onkeydown = function() { alert(event.keyCode) if ((event.keyCode == 78) && (event.ctrlKey)) { alert ("No new window") event.cancelBubble = true; event.returnValue = false; event.keyCode = false; return false; } } In my cas...

Looking for docs on Android browser, especially w.r.t. certificate/signature

Hi all, I'm looking for any docs for Android Browser. I'm currently looking at Chromium project and V8 project, though. Any pointer to such a resource would be greatly appreciated in advance. Besides, is there any doc on how certificate and signature work pre-/post- installation? I read "Singing your applications", but it didn't give mu...

Rendering directed graphs in a browser

I need to render Graphviz DOT graphs in a browser. I also need some interactive functionality such as allowing node names to be hyperlinks. I have tried using Canviz (Javascript renderer), but it doesn't handle large graphs very well. Many of my links also do not work on large graphs. ...

Any apps (such as IE) that goes through Wininet has the 2k length limit on URL -- what about other browsers?

Any apps (such as IE) that goes through Wininet has the 2k length limit on URL -- what about other browsers -- none of Firefox, Chrome, Safari, Opera go through Wininet? ...

Problem while handling alerts/confirms on web page through java(gargoyle)

Hye everybody I'm here to get some help on a problem. Currently I'm working on a login web page which gives alerts and confirm on submitting the user details, I had to automate the login through java. As I had tried my hand on many othe web pages earlier with gargoyle API through code which worked well for other things but now got stuck...

How to force a specific code page for a website?

HI I have the following (apparently simple) problem: I have to install a simple website, made by someone else, on a web hosting account. The site consists of lot and lot of HTML pages, no dynamic content, created some in MS Word and saved as html, some in frontpage, etc. A mixed bag. I uploaded initially on a test account on my server ...

On Screen (touchscreen) Web Keyboard

Hi, I have a webapp that needs to have the option to be used in a kiosk-style, touchscreen-only environment. Am wondering whether there are any good browser-based keyboards we could use. Probably something javascript or jquery based. Basically we would like to replicate the experience of typing on a mobile browser, but in a normal br...

Influencing Web Browser Resource Load Sequence

I have a legacy site that has dozens of little images on it. In addition, a CSS sprite is used for a variety of styling components. My browsers are loading the CSS image after the slew of HTML images, so the styling is blocked by the number of pending HTTP requests. I really want the CSS to load first, as many of these HTML images are...

Allowing drag and drop in a usercontrol on a web page

I'm building an application in C# to run in a browser window. I want to drag and drop files from the windows explorer into a listbox. However, when I try to pop up a dialog that contains the drop target, I get an error. Application attempted to perform an operation not allowed by the security policy. Etc. There are additiona...