tagged [browser]

How do you disable browser autocomplete on web form field / input tags?

How do you disable browser autocomplete on web form field / input tags? How do you disable autocomplete in the major browsers for a specific input (or form field)?

8 Apr at 23:1

How to open a new tab using Selenium WebDriver in Java?

How to open a new tab using Selenium WebDriver in Java? How can I open a new tab in the existing Firefox browser using Selenium WebDriver (a.k.a. Selenium 2) in Java?

How do we control web page caching, across all browsers?

How do we control web page caching, across all browsers? Our investigations have shown us that not all browsers respect the HTTP cache directives in a uniform manner. For security reasons we do not wa...

How to open link in a new tab in HTML?

How to open link in a new tab in HTML? I'm working on an HTML project, and I can't find out how to open a link in a new tab without JavaScript. I already know that `` opens the link in the same tab. A...

11 Mar at 01:2

How to detect page zoom level in all modern browsers?

How to detect page zoom level in all modern browsers? 1. How can I detect the page zoom level in all modern browsers? While this thread tells how to do it in IE7 and IE8, I can't find a good cross-bro...

7 Feb at 10:29

How Force browser to reload cached static file with versioning?

How Force browser to reload cached static file with versioning? After deploying a new version of a website the browser loads everything from its cache from the old webpage until a hard, force refresh ...

How can I stop the browser back button using JavaScript?

How can I stop the browser back button using JavaScript? I am doing an online quiz application in PHP. I want to restrict the user from going back in an exam. I have tried the following script, but it...

14 Dec at 22:53

What does appending "?v=1" to CSS and JavaScript URLs in link and script tags do?

What does appending "?v=1" to CSS and JavaScript URLs in link and script tags do? I have been looking at a HTML 5 boilerplate template (from [http://html5boilerplate.com/](http://html5boilerplate.com/...

8 Dec at 10:5

Determine a user's timezone

Determine a user's timezone Is there a standard way for a web server to be able to determine a user's timezone within a web page? Perhaps from an HTTP header or part of the `user-agent` string?

How to open a PDF file in an <iframe>?

How to open a PDF file in an ? I want to open the pdf file in an iframe. I am using following code: It is opening fine in Firefox, but it is not opening in IE8. Does anyone know how to make it work al...

2 Dec at 13:53

Check if Internet Connection Exists with jQuery?

Check if Internet Connection Exists with jQuery? How do you check if there is an internet connection using jQuery? That way I could have some conditionals saying "use the google cached version of JQue...

Difference between F5, Ctrl + F5 and click on refresh button?

Difference between F5, Ctrl + F5 and click on refresh button? I have often experienced while developing my web applications that pressing or refresh doesn't produce or refresh the proper result. But w...

Special mouse events in a browser: wheel, right-click?

Special mouse events in a browser: wheel, right-click? Google maps is an impressive display of what you can do with JavaScript and Ajaxy-goodness. Even my mouse scroll wheel and right-click works to p...

Why my coreWebView2 which is object of webView2 is null?

Why my coreWebView2 which is object of webView2 is null? I am creating a object of Microsoft.Web.WebView2.WinForm.WebView2 but the sub obect of this coreWebView2 is null ``` Microsoft.Web.WebView2.Win...

How do I uniquely identify computers visiting my web site?

How do I uniquely identify computers visiting my web site? I need to figure out a way uniquely identify each computer which visits the web site I am creating. Does anybody have any advice on how to ac...

7 Jul at 19:1

Silverlight fullscreen limitations

Silverlight fullscreen limitations When a Silverlight plug-in is in full-screen mode, it disables most keyboard events. They say it is for [security reasons](http://msdn.microsoft.com/en-us/library/cc...

20 Jun at 09:12

Detect OS X version 10.4 and below on server

Detect OS X version 10.4 and below on server Based on [this](https://stackoverflow.com/questions/647969/detect-exact-os-version-from-browser) it looks like it's hard to get OS version detection absolu...

20 Jun at 09:12

Get the size of the screen, current web page and browser window

Get the size of the screen, current web page and browser window How can I get `windowWidth`, `windowHeight`, `pageWidth`, `pageHeight`, `screenWidth`, `screenHeight`, `pageX`, `pageY`, `screenX`, `scr...

Make page to tell browser not to cache/preserve input values

Make page to tell browser not to cache/preserve input values Most browsers cache form input values. So when the user refreshes a page, the inputs have the same values. Here's my problem. When a user c...

2 Jun at 16:57

How do I disable text selection with CSS or JavaScript?

How do I disable text selection with CSS or JavaScript? I am making a HTML/CSS/jQuery gallery, with several pages. I indeed have a "next" button, which is a simple link with a jQuery click listener. T...

30 May at 20:25

Prevent browser caching of AJAX call result

Prevent browser caching of AJAX call result It looks like if I load dynamic content using `$.get()`, the result is cached in browser. Adding some random string in QueryString seems to solve this issue...

16 Mar at 06:49

WebSockets vs. Server-Sent events/EventSource

WebSockets vs. Server-Sent events/EventSource Both [WebSockets](http://dev.w3.org/html5/websockets/) and [Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent...

How do I open a URL from C++?

How do I open a URL from C++? how can I open a URL from my C++ program? In ruby you can do What's the equivalent in C++? I wonder if there's a platform-independent solution. But if there isn't, I'd li...

18 Jan at 09:54

How can I tell if a DOM element is visible in the current viewport?

How can I tell if a DOM element is visible in the current viewport? Is there an efficient way to tell if a DOM element (in an HTML document) is currently visible (appears in the )? (The question refer...

15 Dec at 04:44

What does <meta http-equiv="X-UA-Compatible" content="IE=edge"> do?

What does do? What's the difference if one web page starts with and If page starts with If there is no difference, I suppose I can just ignore the `X-U