- Original Poster
- #1
If you're determined to go all out and follow the (confusing) directions, it's probably safe to use the BBC as a template. This only appears once at the top of their website, so blink and you'll miss it.
By clicking “Accept All”, you agree to the storing of cookies on your device to enhance site navigation, analyse site usage, and assist in our marketing efforts
These cookies enable our website and App to remember things such as your region or country, language, accessibility options and your preferences and settings.
Analytic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.
Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.
The last I checked (a few months ago) their website was compliant. Are you referring to another section that isn't?Add that the majority of government websites fail to comply - including the ICO who admit that they are working with their CMS provider to remove some cookies.
The last I checked (a few months ago) their website was compliant. Are you referring to another section that isn't?
Cookies law changed at 11th hour to introduce 'implied consent'
Alteration to regulations may leave Britain out of step with EU law in implementation of continent-wide directives
New EU regulations on the use by British websites of cookies have been watered down by the UK's information commissioner just hours before they were due to come into force.
But they could mean that Britain is out of step with EU law in its implementation of the continent-wide directives, and lead to fights with European courts.
In an updated version of its advice for websites on how to use cookies small text files that are stored on the user's computer and can identify them the Information Commissioner's Office (ICO) has said that websites can assume that users have consented to their use of them.
The advice was only updated on Thursday, 48 hours before the deadline for implementing the new rules, and published the next day.
"This is a striking shift," said Stephen Groom, head of marketing and privacy law at the law firm Osborne Clarke. "Previously the ICO said that implied consent would be unlikely to work. Now it says that implied consent is a valid form of consent."
The use of "implied consent" shifts responsibility to the user rather than the website operator, and will come as a relief to thousands of website operators who have been struggling to comply with new EU directives which came into law a year ago.
Does anyone know if this implied consent in the Cookie Law might be used as an argument to justify sending Newsletters without double opt in, and from there, spam?
Just a thought.
Is there any scripts out there that allow us to offer a similar system as the BBC? I know there are loads of scripts out there that will allow the 'Yes' or 'No' options on the front page, but I think the BBC's way is far better.
Is there any scripts out there that allow us to offer a similar system as the BBC? I know there are loads of scripts out there that will allow the 'Yes' or 'No' options on the front page, but I think the BBC's way is far better.
It occurs to me, that any users disabling cookies, will - as an 'unknown' user - be served the 'cookie notification' message on every site they visit from now onwards. I wonder if webmasters have thought of that(?) Or how long they will need to display the notification for(?). I don't know the legislation intimately, but my guess will be indefinitely!
We've got something that is modelled on the BBC cookie notification, available to download free
EU cookie law compliance - free script
var age_check = readCookie("over18");
if(!age_check) {
$.get("/includes/over18.php", function(html) {
$("body").prepend(html);
$("#yes18").click(function() {
createCookie("over18", true, 365);
$("#box18").remove();
});
});
}
Just had a look at the code and that's how I did something similar recently for an alcohol distributor that required age verification.
You can avoid having to add the html to every page by loading it from the JS file using ajax if the acceptance cookie isn't set. Does rely on JS being enabled though.
Code:var age_check = readCookie("over18"); if(!age_check) { $.get("/includes/over18.php", function(html) { $("body").prepend(html); $("#yes18").click(function() { createCookie("over18", true, 365); $("#box18").remove(); }); }); }
As consent is now "implied" the regulations have effectively been made pointless.
Prior consent is not required.
A clear written cookie policy is still required.
But prompts to accept cookies are not required.
Is this script for seeking prior consent or just to ask users to turn cookies on?