I get the following error in Chrome's developer tools window when I try to set a cookie using this jQuery plugin:

Uncaught Error: SECURITY_ERR: DOM Exception 18

What does this error mean and how can I fix it? I get the same error when I use this jQuery plugin.

link|improve this question

feedback

6 Answers

up vote 63 down vote accepted

You're most likely using this on a local file over the file:// URI scheme, which cannot have cookies set. Put it on a local server so you can use http://localhost.

link|improve this answer
Wow, I'm surprised that you were able to figure out what this error message means. Talk about vague errors... Thanks man. – Pieter Apr 24 '10 at 17:54
10  
Also happened for me using getImageData() on a canvas when loaded from file://. – Timmmm Jan 23 '11 at 16:39
4  
Good call, also happens when calling getImageData() for an image loaded from another host. Moving the file to the same domain/protocol/etc. fixes it. – mike clagg Feb 4 '11 at 22:30
9  
Pro tip: if you have Python installed, simply type python -m SimpleHTTPServer in the root directory of your site, and find it hosted at localhost:8000. – Thomas Sep 4 '11 at 17:00
1  
For Python 3, to get the same effect you need to do python -m http.server 8000 – Kat Dec 25 '11 at 15:46
show 2 more comments
feedback

I also had this issue while developping on HTML5 in local. I had issues with images and getImageData function. Finally, I discovered one can launch chrome with the --allow-file-access-from-file command switch, that get rid of this protection security. The only thing is that it makes your browser less safe, and you can't have one chrome instance with the flag on and another without the flag.

link|improve this answer
When you use --allow-file-access-from-files (notice it's now plural) you have to remember that the switch only takes effect if there aren't any other instances of Chrome already running. – BlueMonkMN Oct 30 '11 at 15:26
feedback

You can also "fix" this by replacing the image with its inline Base64 representation:

img.src= "data:image/gif;base64,R0lGODlhCwALAIAAAAAA3pn/ZiH5BAEAAAEALAAAAAALAAsAAAIUhA+hkcuO4lmNVindo7qyrIXiGBYAOw==";
Useful, when you do not intend to publish the page on the web, but instead use it on local machines only.

link|improve this answer
Any idea how to get the base64 representation of a canvas in such a way that it doesn't throw this error? – chaiguy Apr 12 at 0:22
feedback

I wasn't completely happy by the --allow-file-access-from-file solution, because I'm using Chrome as my primary browser, and wasn't really happy with this breach I was opening.

Now I'm using Canary ( the chrome beta version ) for my development with the flag on. And the mere Chrome version for my real blogging : the two browser don't share the flag !

link|improve this answer
1  
To those of you curious, it is now --allow-file-access-from-files (with an s) – Shane Reustle Oct 1 '11 at 2:53
feedback

This error pops up, if you try to create a web worker with data URI scheme.

var w = new Worker('data:text/javascript;charset=utf-8,onmessage%20%3D%20function()%20%7B%20postMessage(%22pong%22)%3B%20%7D'); w.postMessage('ping');

It's not allowed according to the standard: http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#dom-worker

link|improve this answer
feedback

Faced with the same situation playing with Javascript . Unfortunately Chrome doesn't allow to access javascript workers stored in a local file.

One kind of workaround below using a local storage is to running Chrome with --allow-file-access-from-files (with s at the end), but only one instance of Chrome is allowed, which is not too convenient for me. For this reason i'm using Chrome Chanary, with file access allowed.

BTW in Firefox there is no such an issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.