opera

Monitor web sites visited using Internet Explorer, Opera, Chrome, Firefox and Safari in Python

一世执手 提交于 2019-12-08 04:57:26
I am working on a project for work and have seemed to run into a small problem. The project is a similar program to Web Nanny, but branded to my client's company. It will have features such as website blocking by URL, keyword and web activity logs. I would also need it to be able to "pause" downloads until an acceptable username and password is entered. I found a script to monitor the URL visited in Internet Explorer (shown below), but it seems to slow the browser down considerably. I have not found any support or ideas onhow to implement this in other browsers. So, my questions are: 1). How

Select in Opera doesn't close on change event

跟風遠走 提交于 2019-12-08 04:26:28
问题 In Opera (and only in Opera) I have strange behavior of select element. In change event, if I disable this select, it doesn't close (collapse). $('select').bind('change', function() { $(this).attr('disabled', true); }); Is it some known issue of opera? So far I haven't found anything. 回答1: Use a short delay before disabling the select, 10ms should be sufficient 回答2: Setting disabled attribute did not work for me, but this code works: $('select').change(function() { $(this).hide(); var _this =

Cross-Origin Resource Sharing for Opera

那年仲夏 提交于 2019-12-08 03:56:43
问题 Has anybody found a workaround for Opera regarding Cross-Origin Resource Sharing? I want to make a cross domain XmlHttpRequest to my domain foo.com from my script placed on bar.com. The standard so far is not implemented by Opera. Examples and documentation on how to do this on other browsers can be found here As far as I tested, you can do this on Firefox, IE, Safari and Chrome. But not on Opera. 回答1: Possible alternative is to use JSONP for cross domain requests. 回答2: JSONP is the best/only

Why IE9 +, Chrome and Opera15 + browsers identify themselves as Mozilla in the User Agent?

China☆狼群 提交于 2019-12-08 03:00:04
问题 I was looking for a way to identify the IE with JavaScript and suddenly, I noticed that the browsers, were identified as Mozilla: Opera Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 OPR/17.0.1241.53 Chrome Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36 IE Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0) Now I'm wondering why this browsers are

How to access local server on a PC using Opera Mobile

扶醉桌前 提交于 2019-12-08 02:54:03
问题 I am trying to test my website on Opera Mobile on my PC. But I am not able to connect to the local server using the mobile browser. Could any one of you tell me what all settings need to be changed in order to make this thing work? Your answers will be greatly appreciated. Thanks in advance, Yamini 回答1: Using Opera Mobile in non turbo or non mini mode should work for accessing your locally hosted server. Try going into the Settings of Opera Mobile and turning off Compression/Mini/Turbo . Then

Looking for Wii compatible Javascript Flash mp3 player

泄露秘密 提交于 2019-12-08 02:32:27
问题 I am looking for a flash mp3 player that will work within the Opera-based browser on the Wii. The player needs to be javascript enabled (support methods like play, stop etc.) The mp3 tracklist will be built dynamically using ajax on the same page as the player so it must trigger an event when a track finishes playing (or at least provide functionality of some kind to indicate that it's time to start the next track). Does anyone know of such a player? I have looked at these players: jPlayer:

How to set browser window size for Chrome and Opera launched by Selenium WebDriver in incognito/private mode?

跟風遠走 提交于 2019-12-08 02:20:24
问题 I'm working on application which will execute tests on multiple browser types (Chrome, FireFox, Internet Explorer and Opera). I found the way how to launched them in incognito/private modes (How to open incognito/private window with Selenium WD for different browser types?) and set window size (Browser window control #174): Window window = driver.manage().window(); window.setPosition(new Point(0, 0)); window.setSize(new Dimension(width, height)); But this code does not work in all cases: +---

border-radius rendering strangely in opera (fine in chrome, firefox)

≯℡__Kan透↙ 提交于 2019-12-08 02:13:42
问题 http://jsfiddle.net/eE4Y2/2/ I'm trying to use css to create a rounded, folded corner illusion for a div. I cannot figure out why this fairly simple html/css renders strangely in opera (v.12.10) but looks fine in chrome and firefox. When I apply a border-radius to the div, a strange notch appears within the border, on opera only. Please see the jsfiddle above to see an example. I'd love to hear a fix or at least an explanation as to what's going on with Opera in this case. <body> <div class=

Firefox not displaying SVG

僤鯓⒐⒋嵵緔 提交于 2019-12-07 19:39:29
问题 I have a page that uses SVG to make an image map. Works fine in IE9 and Chrome but FireFox and Opera are cropping the images - though rollovers do still work. The site is here: http://www.kollegetown.com Anyone know why this might be happening? 回答1: Just add this (or something equivalent) to your stylesheet: svg { height: 100%; width: 100%; } 来源: https://stackoverflow.com/questions/13568915/firefox-not-displaying-svg

Opera Mini Jquery AJAX not loading

依然范特西╮ 提交于 2019-12-07 18:57:02
问题 I have been developing a website for mobile devices. However due to some reasons, AJAX calls are not working on Opera Mini. For Example - one such request for loading more content at the end of page (70%) $(document).scroll(function (e) { if (processing) return false; if ($(window).scrollTop() >= ($(document).height() - $(window).height()) * 0.7) { processing = true; $.ajax({ type: "GET", url: "/ajax/popup-loadmore-test.php", data: { entityid: $("#e").attr("data-id"), version: version } })