google-chrome

"Unsafe JavaScript attempt to access frame with URL..." error being continuously generated in Chrome webkit inspector

Chrome (or any other webkit browser) throws a ton of these "Unsafe JavaScript attempt to access frame with URL..." when working with the Facebook API for example. It doesn't interfere with actual operation, but it does make the javascript console basically unusable. I'd like to know if there is a way to suppress these errors specifical...

clear javascript console in Google Chrome

Hi, I was wondering if I could clear up the console with some command.. console.log(), can print... is there a command to clear up console?.. I've tried to console.log(console); and got this functions below... assert: function assert() { [native code] } constructor: function Console() { [native code] } count: function count() { [nati...

Tinymce Line break problem on Safari and Chrome

Hello all, Does anyone know how to fix the problem about Tinymce Line break problem on Safari and Chrome. For example, Let's say, I have two line pure text. When I copy and paste through firefox or IE. It's under one p tag. So it's same formatting i saw in the text file which is two line. But if i copy and paste through Chrome or Fir...

Why doesn't one tooltip work in Chrome?

Hi, at Euroworker.no we're now adding Tooltips, I've been using the Flowplayer.org tools to implement tooltips here. It reads the text for the tooltip from the title tag. Ok so the problem is that on the search box, vis button, Filter Meny and Handlevogn in FF, the tooltip works perfectly. In chrome, only the three work and Handlevogn...

Chrome fadeIn scroll bar issue

Bikram Website If you view this page in the latest version of chrome you will notice when you click on an instructors name the scroll bar is black when fading in. It is not a webkit issue as safari is fine. Anybody know why chrome does it? ...

CSS - changing the font color for a from select option in firefox

I'm building a website for my church, and I'm teaching myself all about web design along the way. http://www.wilmingtonchurchofgod.org/contact_us.html is the link where you can see my issue. If you look at that page in firefox, and you click the select part of the form (next to, "Who would you like to contact?") you will see that when ...

Chrome and Safari strange behaviour in Javascript

Hi, i've written this peace of code: var a=function(){ }; a.name="test"; a.prop="test2"; Now if i debug the code with the console: console.log(a.name); console.log(a.prop); In Firefox i get a.name="test" and a.prop="test2", while in Safari and Chrome i get a.prop="test2" but a.name="". It seems that there's no way to assign a "na...

GWT application throws an exception when run on Google Chrome with compiler output style set to 'OBF'

I'd like to know if you guys have faced the same problem I'm facing, and how you are dealing with it. Sometimes, a small and harmless change in a Java class ensues strange errors at runtime. These errors only happen if BOTH conditions below are true: 1) the application is run on Google Chrome, and 2) the GWT JavaScript compiler outpu...

Why does Chrome show an odd-shaped highlight around my image link when I tab to it?

When tab to a link on my webpage in Chrome, the tab hightlight box around this image link appears like this: (the orange border is what Chrome shows as the highlight box) The HTML/CSS isn't all that special: <a href="download.html"> <img src="images/download_button.png" class="downloadbutton"/> </a> img.downloadbutton { mar...

Is there a way to get the xpath in google chrome?

I have a webpage I want to use with YQL. But I need the xpath of a specific item. I can see it in the debug tools area for google chrome but I don't see a way to copy that xpath. Is there a way to copy a full xpath or an extension to do it? Thanks, G-Man ...

Grabbing current URL and setting it to Textbox in the HTML frame using Google Chrome extension.

Hi all, Question says it all, dividing it into two parts: 1- Grabbing url when chrome extension is clicked, of current tab(on focus) - CHROME SPECIFIC. 2- Setting the same in a Textbox value, in one of frames of web page.Which means, the textbox resides in a.html where on webpage it's <frame src="a.html"> -CHROME/JAVASCRIPT/HTML spec...

Detecting the onload event of a window opened with window.open

window.popup = window.open($(this).attr('href'), 'Ad', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); $(window.popup).onload = function() { alert("Popup has loaded a page"); }; This doesn't work in any browser I've tried it with (IE, Firefox, Chrome). How can I detect when a page is load...

Any working Greasemonkey script with Jquery that works in Google Chrome?

Do you have any link\example of Greasemonkey script with Jquery that works in Google Chrome? ...

Google chrome extension: local storage

Hi there I'm developing an extension for Google Chrome, and have run into some trouble.I created an options.html page and added it to the manifest.json file.The page shows properly. I saved the options, and then went back to the page on which the extension is supposed to run. Unfortunately, the Local storage for the options was return...

Can Content script set value of a text box within HTML frame? using Google Chrome extensions..

Hi all, I was working on a very simple extension, where on clicking extension icon, a webpage is opened in a new tab, the webpage has HTML frames, within which lies a textbox. I want to set a value for the same. The webpage which opens has: <HTML> <FRAMESET rows="15%, *" border="0"> <FRAME src="./files/abc.htm" id="abc_frame" name="ab...

Background position image overlay (Works in IE, not in Mozilla/Chrome/Safari)

Hi all, I am having an issue positioning a background image using the following jquery background position command in Firefox, Google Chrome, and Safari. The code works correctly in IE 8. $('#element').css({ backgroundPosition: 'xpx ypx' }); The desired effect is a continuous stream of fluid from the right side of the screen to the ...

Chrome extension Page Action JS

I'm trying to create an extension using this docs: http://code.google.com/chrome/extensions/content_scripts.html I want a part of JS code to run when document is ready (loaded). This is my manifest.json: { "name": "OwnExtension", "version": "0.1", "content_scripts": [ { "matches": ["https://my.site.eu/*"], ...

Google Chrome is doing things wrong again

Chrome is wrongly reporting width and height values for images during, or just after, load time. Jquery is used in this code example: <img id='image01' alt='picture that is 145x134' src='/images/picture.jpg' /> <script> var img = $( 'img#image01' ) img.width() // would return 145 in Firefox and 0 in Chrome. img.height() // would re...

Silverlight 4, Google Chrome, and HttpWebRequest problem

My Silvrlight 4 application hosted in ASP.NET MVC 2 working fine when used through Internet Explorer 8, both in development server and remote web server (IIS 6.0). However when I try to browse through Google Chrome (version 5.0.375.70) it throws "remote server returned not found" error. The code causing the problem is the following: pub...

Download Videos from Youtube with Python

I am hoping to write a script that will allow for the detection of video on a url and provide a download link to a *flv for google chrome. Anyone have any suggestions were to start and get a footing? ...