browser

How to print a web page without using the WebBrowser control

Hi there, We are using a client application to print out grade sheets from an online application. This has been working flawlessly until the systems were upgraded to IE 8. I now receive this error (Access Denied): http://img707.imageshack.us/img707/5259/62270489.png Apparently, this is a known issue and it cannot be solved. How can I ...

Adobe popping out of the browser

Hi, Im building a web application that displays a xfdf document. When we are testing in adobe 5 and we can't stop adobe opening outside the webpage. The user clicks the report and it should open in the browser but instead it opens in adobe it appears to work in everything but adobe 5. We have previously done this with out any problems...

Prevent browser's back button from reopening pop up window on previous page

How would I prevent the browser from opening the pop up window that was displayed from the previous page when the user clicks the back button? I hope that made sense but I'll explain it in point form below: There are three pages: Page1, Page2, Page3 User loads Page1 and clicks a link to load Page2 in a new window using JavaScript (i....

Is IE 9 suite the best for web designers with css3 and HTML 5 ?

any one tried ie 9 test browser plugin :) ...

How can I test my website in an old version of Safari on OS X?

Apple doesn’t seem to offer downloads of older versions of Safari, and I’m not even sure they would install on Mac OS X, as Safari seems to be part of the OS like Internet Explorer is on Windows. Is there any way to test my website on old versions of Safari? I need to fully test (i.e. click around, try out JavaScript), so a screenshot s...

How to run a javascript when browser process is killed?

Hi, I hav onUnload="cleanup()" defined in my html body tag. The cleanup() method in javascript is function cleanup() {--clean up session--}. But when the browser is terminated by killing the process using task manager, I want to do the same action as cleanup. How can this be done? ...

Can I access Flash data before they are rendered by the browser ?

Is it possible to read numbers and names from a Flash page before they are rendered by the browser ? The webpage is changing dynamically and I would like to capture the data every about 60 minutes. I have no access to the Flash website but I might be able to modify an open source browser if this would help. OS is Win 7 and I can speak a...

Mustache.js render technique

Hello everyone, i am trying to use mustache.js to render some JSON in the browser. What i want to do is: <li> <span class="label">Location: </span> {{#locations}} {{.}}<span class="social-small-size "></span> {{/locations}} </li> The locations is a js array [["Pendéli, Attiki, Greece", "facebook"], ["Greece", "linkedin...

Browser zoom level: detecting, adjusting with Javascript

In the 2-frame 'rows=' frameset I have, a user change of the zoom level to less than the 125% I coded for produces "dead space" between the frames. In JS, is the browser's zoom level detectable, and can it be adjusted? Or have I simply forgotten a default coding consideration of some kind? (I've seen CSS's 'zoom' style, where presumably...

Problem with two servlet engine cookies-based sessions in one browser

Recently we met problem with sessions in our Java web app hosted in Tomcat. Sometimes our users share one computer and browser for working with web app. Web app uses cookies-based sessions. Web app has page with same HTML form but with specific data for each user. Let`s imagine that User1 passes authentications and loads this form wi...

Why is this site so slow in IE6 and crashes?

My site: http://newwebsite01.endurit.com/Dienstleistungen/Internet-Solutions.aspx ...Crashes in IE6! Statusbar always shows remaining items.... If you click anything while you see this message it crashes. If you do nothing and wait about 4minutes it loads the site. I just googled and found several solutions why IE6 could crashing and b...

Prompt user to "Open firefox" if the website is opened in "IE"

Hi , I have a website,which is "currently" designed & tested to work only on firefox.If user tries to open it in other browser then I want to show a popup saying "This site works best with Mozilla Firefox. We're working hard to add support for your favorite browser. Meanwhile, do try it with Firefox." Can we provide a buttion on clicki...

Browser Memory Consumtion (FireFox)

I am developing a Web Application. I have the feeling, that the browsers memory consumption is higher than it should be with my application. Is there a way or tool by which I can see what parts do consume the memory of the browser? ...

Way to determine the visible size of the web page

Is there a way for knowing what size was the visible portion of a page? Are there any services that provide this? I mean, not just screen resolution, but available browser area. When a user has a lot of browser toolbars the area left for the webpage gets reduced. On the other hand, using Chrome may maximize the available space. Thanks ...

Send info from web browser to adobe air app

I'm creating an app and I need to know how to send just a few words or a number from the web browser to the adobe air app. Something similar to iTunes where you click on an iTunes link and redirects you to the app. I am willing to use any web scripting language for it. Thank You :) ...

Launching browser within CherryPy

I have a html page displayed using... cherrypy.quickstart(ShowHTML(htmlfile), config=configfile) Once the page is loaded (eg. initiated via. the command 'python mypage.py'), I would like to automatically launch the browser to display the page (eg. via. http://localhost/8000). Is there any way I can achieve this (eg. via. a hook withi...

How to specify your webpage's language so Google Chrome doesn't offer to translate it.

I have a page that Google Chrome insists on thinking is in French. Here's a snapshot of it: http://yootles.com/outbox/overcleverchrome.html Note that I'm including a meta http-equiv tag to tell it that it's in fact in English: <meta http-equiv="Content-language" content="en"> But it doesn't help. Is there anything else I can do to p...

cross-domain cookie in Opera

Hi, is it possible to set/read cross-domain cookies in Opera browser? I'm using solution http://bit.ly/c1Tk1i (sorry - in Russian, plz use google translate) and it works fine in any browser except Opera. ...

Trying to perform a series of actions on page unload, but the pages unloads too fast to finish them.

I have a series of actions I want to perform on page unload. Namely if a user is editing an input field, and they refresh or close browser or leave page, I want to save the contents of the field. The actions don't include an AJAX call, so I can't just make it synchronous. It's actually saving to local storage, but the page unloads b...

redirect wont work in Chrome

I have a form on my website. When this form is filled out, it is then validated by a javascript validation function. At the bottom of this function I have this piece of code: window.location="../index.html"; This wont work on Chrome, but does work in Firefox. My Q is, how can I make this simple redirect work on all (most) browsers...