Cookie Policy
What are cookies?
Cookies are small text files stored on your computer, tablet or mobile phone when you visit certain pages of a website using those devices.
Changing your cookie preferences
Most browsers (Google, Safari, Chrome etc.) allow cookies to be placed on your devices when you visit websites. If you wish to change the way your browser accepts or rejects cookies, or delete cookies that have been placed on your device, visit www.allaboutcookies.org
Visiting our website
When you visit our website we place first and third party cookies so that the website functions properly. In particular, cookies allow the site to respond to, and remember, your requests and actions including placing items in baskets or responding to search requests, allow you to change how you view the site including adjusting the size of different sections and use our gift personalisation features.
If you remove these cookies from your device, you will only be able to browse our website. You will not be able to purchase anything.
We also use cookies to understand how frequently our website is visited, which pages are most visited, how visitors move between pages and the length of time spent on our website. This includes Google Analytics cookies. The information collected by these cookies is aggregated and therefore anonymous. We use these cookies to continuously improve our website.
Code Snippits
Find the Day of a Date
To help sell our personalised newspapers it can be useful to allow customers to find the day a particular date fell on.
The JavaScript below shows how this can be achieved usign the date object.
var date = new Date();
var day = date.getDay(); // this example uses todays date, add the user selected date here
var name = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"][day];
alert(name);
×