1
vote
1answer
26 views
Why is it that what I set in localStorage isn't the same as what I get?
Consider this code:
myObj = new BackboneModel({'a_key': {'c_key': c_val, 'd_key': d_val}, 'b_key': b_value});
localStorage.setItem('myObj', myObj);
Now if I use Chrome developer tools to inspect ...
0
votes
2answers
19 views
Which ways can sound be produced in chrome?
I'm playing a canvas-based game in chrome. There is no mute option and i'm trying to find the audio-source. It's not flash and it's not the audio-tag. What other things can produce sound in chrome and ...
2
votes
1answer
27 views
Where is this vertical padding in jqGrid coming from?
I've noticed a strange bug when using jqGrid with inline editing in chrome. As rows are selected, the vertical padding grows by a pixel or two each time. I'm not sure what's causing this, but I've ...
0
votes
0answers
33 views
Text data is not getting bind to html elements through jquery code only in chrome browser
I am trying to bind text data to html elements through a jquery using particular element id but data is not getting bind only in chrome browser, same functionality is properly working in other ...
0
votes
0answers
18 views
Open Safari / Google Chrome developer tools programmatically from JavaScript
I'm looking for a way to open the WebKit “developer tools” from a script attached to a web-page. I need solutions for both Google Chrome and Safari, that will open the developer-tools pane if it's not ...
1
vote
1answer
21 views
Error injecting a script in others tabs in my chrome extension
this is my first try building a chrome extension.
I took the first example and motified it to my needs.
I want to build a chrome extension that can controll the youtube player on different tabs
from ...
0
votes
0answers
29 views
Bug with chrome.storage?
I recently asked how to store an array with chrome.storage : Store an array with chrome.storage.local
I my extension, I now have this function :
function storeGeneratedKeyId(keyPairId){
...
0
votes
0answers
11 views
webkitNotifications Position
Is it possible to set webkitNotifications position in code rather then through settings which applies to all notifications.
var notification = window.webkitNotifications.createNotification("","My ...
0
votes
1answer
82 views
CSS/JS Dropdown menus not working on Android
Summary:
Basically, I'm trying to stop Android from following a link on an a tag if the drop down isn't visible. Here is a live link: bit.ly/bpH1u
Detailed Problem:
I've put together the following ...
-2
votes
0answers
34 views
Excute some javascript code before page loaded [closed]
My requirement is that I need to excute some javascript code before webpage is loaded. However, this page isn't controlled by me, which means I can't modify the html file directly. I have known I can ...
0
votes
2answers
34 views
javascript, Google Chrome treats alert call from input and html buttons differently
I created a form to be processed with javascript only (no submit) and found that Google Chrome was erasing all the inputs when I popped up an alert. After some experimenting, I found that Chrome ...
0
votes
1answer
29 views
Google Chrome App: Webview behavior
While researching for an issue on <iframe> on Chrome Extension, the <webview> in Chrome Apps caught my eye and got me interested.
So i decided to do a small example of the issue i am ...
4
votes
1answer
60 views
jsFiddle not working in Chrome
Recently I created a fiddle with the following code -
HTML
<button onclick="action();">click me<img src="http://dummyimage.com/200x200/000000/fff.gif&text=Image+1" width="200px" ...
2
votes
1answer
44 views
How to tell Chrome, please use local javascript from the browser for every site or any actions? Similar to Opera
I am using Chromium / Google Chrome browser in my Ubuntu desktop. Now for some testing reason, i need to run this javascript from browser not from the website server javascript code.
Is there any ...
0
votes
1answer
36 views
Can I access Chrome chrome://gpu/ data with Javascript?
When I open the page chrome://gpu/ I can see if the video is hardware accelerated or not, can I get that information using Javascript? (I'm building a Chrome extension so maybe there is an API?)
Thx ...
1
vote
0answers
32 views
JQuery Player - Doesn't work on Chrome
I am using a music player written in Jquery which I converted it into a radio player.
The problem is It doesn't work on google chrome
In my index.php file, (written in html5 also) I have created ...
0
votes
0answers
41 views
Chained CSS3 Animation Not Working Correctly in Chrome
I have a Lightbox DIV that has some transform animations using CSS3 animations on it. Here's the CSS:
@keyframes
changeframe{
from{
transform:perspective(1000px) rotateX(20deg) ...
0
votes
0answers
27 views
Redirect with AJAX in a chrome extension
I am trying to code an interface with keyserver.pgp.com in a chrome extension.
First I'd like to look for a key with this simple request (it's a POST request here but it also works with GET) :
...
14
votes
4answers
654 views
Why is the Javascript operator “&&” so weird?
a = 1;
b = "1";
if (a == b && a = 1) {
console.log("a==b");
}
The Javascript code above will result in an error in the if statement in Google Chrome 26.0.1410.43:
Uncaught ...
0
votes
1answer
19 views
Settimeout works in chrome/webkit based browsers but not firefox
Can somebody explain why this simple code works in webkit based browsers (even my android phone), but not on firefox?
(The code basically refreshes an iframe every 1000 ms (a bash script echos to that ...
0
votes
1answer
25 views
how to get rid of unneeded scroll bars
I have a DIV that contains among other stuff a table which obviously grows or shrinks in size as rows or columns are added or deleted, when this happens the container DIV must be re-sized accordingly. ...
2
votes
2answers
45 views
Why is console.log illegaly invocated as a function parameter? [duplicate]
When I try
[1,2,3].forEach(alert);
it opens message box for every item of the array as expected.
But when I try
[1,2,3].forEach(console.log);
I receive following error
Uncaught TypeError: ...
0
votes
0answers
15 views
JavaScript adding unexpected window.history entries
When I load a certain page on my site in a new tab, I noticed the back button was enabled. This shouldn't be the case considering it's the first page of a new tab. In fact when I click & hold on ...
3
votes
1answer
62 views
AJAX works if chrome dev tools open but not if chrome web tools closed?
I'm loading a json file via ajax. If Chrome dev tools is open, everything functions perfectly. If Chrome dev tools is closed it fails. Thankfully dev tools still keeps doing it's thing even when ...
0
votes
1answer
6 views
Cpanel and WHM will not save the passwords in Chrome
When trying to login on a cPanel or WHM server, the browser never asks if I want to save the login credentials (user/password). This only happens with Chrome (I can save password perfectly with FF and ...
0
votes
0answers
23 views
GWT: windowClosing handler not properly handled in chrome
Window closing handler is not working on my code under Chrome (I'm on it's last version, 26)
I have a class that listens to the Window.ClosingEvent. If the window is being closed while the user is ...
0
votes
1answer
36 views
Make Chrome respond to custom keys?
I've got a few keys on my keyboard (not macros) that I would like to make Chrome respond to via an extension.
For example:
On www.domain.com
When X button is pressed, simulate a click on <div ...
1
vote
1answer
54 views
Store an array with chrome.storage.local
I'm writing a chrome extension, and I can't store an array. I read that I should use JSON stringify/parse to achieve this, but I have an error using it.
chrome.storage.local.get(null, ...
0
votes
1answer
22 views
All of my crossdomain calls return with status 0 out of nowhere
I'm developing using kangoextensions, and have been for quite some time.
All of a sudden, every kango.xhr call, even to bing.com, instead of returning status 200, returns status 0 and "" for data. It ...
1
vote
4answers
43 views
select web camera on google chrome
When you have multiple web cameras.
You can select web camera on the chrome , setting -> contents -> media
But,I would like to select camera from script.
How can I select camera by Html5 or ...
3
votes
1answer
25 views
Creating a blank regex adds a random non-capturing group in Chrome
I realized that I couldn't match an empty regex with /(regex here)/ syntax, because // is a comment.
'this is a test'.match(//)
> SyntaxError: Unexpected token }
So, I tried new RegExp('') and ...
0
votes
1answer
33 views
Use code pasted in Chrome developer console to Auto Enter information in joomla form
I'm updating a bunch of Joomla sites and need to enter the same information through the admin console in each site. There are 25 individual fields in a specific module that need to be updated in each ...
5
votes
1answer
68 views
preventDefault() when a tab key is clicked inside of a textarea in Chrome
I know that similar questions have been asked before, but the behavior I'm seeing is a little different than what I've been able to find on SO.
I have a form that I'm breaking-up into several jquery ...
0
votes
2answers
41 views
Chrome doesn't redraw page when needed
I've searched SO for similar issues (e.x. Chrome does not redraw <div> after it is hidden and Force DOM redraw/refresh on Chrome/Mac ) but none of questions gave me the solution to my problem. I ...
0
votes
0answers
26 views
Google Chrome extension Temporary files' location
It's been more than 3 hours that I've been looking for the exact location (under OS X 10.6.8), but still can't find it.
I'm using PageSpeed Insights and try to find where e.g. the temporary ...
0
votes
1answer
19 views
How to launch a Chrome Extension popup from a background thread?
I want to write a Chrome Extension that will be monitoring for URI link clicks, and when it encounters that it is to launch its popup. I understand that the monitoring will be done in the background ...
0
votes
3answers
32 views
Chrome app closing window
Ok so i am a beginner programmer and was using the template google gave me to make a test app. I wanted that whenn someone clicked a text button, that it would close the window. The window uses HTML ...
1
vote
5answers
50 views
Scope resolution in Javascript using 'with' keyword
There seems to be a strange behavior in Javascript with hoisting and scoping , when using 'with' keyword.
I understand the usage of 'with' is considered taboo, but came across this in one of the ...
0
votes
1answer
32 views
chrome is fine with jsfiddle but firefox isn't
SAME URL FOR PROVIDED
Firfox :
Chrome :
jscode is bellow
function css(a){
var sheets = document.styleSheets, o = {};
for(var i in sheets) {
var rules = sheets[i].rules || ...
0
votes
1answer
30 views
Disable history api in firefox/chrome
I would like to disable the history api in firefox, so history.js would use the fallback mechanism with a hash. This way it could be avoided to use IE for testing/development of the fallback ...
0
votes
0answers
27 views
Javascript: Problems saving and retriving and displaying an image from localstorage
I am developing an extension for Chrome, and need to save and retrieve images from storage.
Some of the images need to be loaded from the extension directory, while others will be send from a ...
0
votes
1answer
55 views
Chrome FATAL crash
I have a Node.js / Meteor app that is left consistently running on a screen - it works no problem for around 20 hours, then without fail (when I'm out of the office) I get the infamous "Aw Snap" ...
0
votes
1answer
16 views
Scrolling to a particular ID within an iframe without moving its parent
I needed to be able to load a particular page in an iframe on demand, so I used a simple wrapper:
function updateFrame(url) {
frames[0].location = url;
}
Then I was asked to load the page to a ...
1
vote
0answers
49 views
javascript marginLeft on image onload not working in Chrome
i have this gallery that resizes image with javascript in order to keep original aspect ratio.
about document structure : stylesheet considering this particular object is as following :
#ThePicture ...
1
vote
1answer
16 views
javascript replace is replacing nested words
I am creating a google chrome extension that messes with the words on whatever website you are reading, but I am having trouble with this section of code specifically.
if(Math.random() > ...
0
votes
2answers
59 views
Why can't I open this html page locally without an IIS Server?
I am currently working on a for fun project at
https://github.com/loganhenson/jsrpg
and have been working on it with a friend using visual studio professional and testing it on my local iis server. ...
0
votes
0answers
23 views
Proxy for one specific script (extension PAC file?)
I'd like to write have a proxy for one specific script, so that if browser will request this script, it will ship some script from other source pointed by me. Is it possible?
It would be also nice to ...
0
votes
1answer
48 views
Google Chrome JavaScript Fade: style.opacity and setTimeout
i have a JavaScript script that fade a element.
the gist is just this:
function fade() {
if (cat.style.opacity > 0) {
// decrease opacity slightly
cat.style.opacity -= 0.1;
...
0
votes
2answers
35 views
JQuery Not Being Parsed For Only Certain Users Even Though JavaScript Enabled in Browsers
I have a test system with a dozen test users. The system is built on the Zend Framework using PHP5 and JQuery. About 3 of the dozen users are having a problem with the login page; when they click ...
-1
votes
1answer
44 views
Unit Testing Chrome Extensions?
What is the best way to unit test a Google Chrome extension?
I need to unit test various JavaScript functions and content-scripts on the websites they were designed for, as well as automate user ...





