www.gov.je Open in urlscan Pro
52.156.194.171  Public Scan

Submitted URL: https://url.us.m.mimecastprotect.com/s/t0RhCo20XotgVmoof10nTh?domain=gov.je.
Effective URL: https://www.gov.je/Pages/default.aspx
Submission: On May 07 via api from US — Scanned from US

Form analysis 3 forms found in the DOM

GET /pages/search.aspx

<form id="searchform" action="/pages/search.aspx" method="get">
  <div class="row">
    <div class="col-md-12">
      <label for="query" class="search">Search gov.je</label>
    </div>
  </div>
  <div class="row">
    <div class="col-md-12">
      <div class="input-group">
        <input type="text" id="query" name="query" class="form-control">
        <span class="input-group-btn">
          <button type="submit" class="btn btn-default" value="Search"><span class="invisible">Search</span></button>
        </span>
      </div>
    </div>
  </div>
  <div class="row">
    <div class="col-md-12">
      <div class="weather text-right">
        <a href="/weather" title="View the weather forecast">Weather forecast
                <img alt="Sunny periods" src="https://govje.azureedge.net/JerseyMet/Icons/D.svg">
			</a>
      </div>
    </div>
  </div>
  <div class="row">
    <div class="col-md-12">
      <div class="weather curtemp text-right">
        <a href="/weather/radar" title="View the weather radar">Weather radar</a>
        <span>16.4 °C</span>
      </div>
    </div>
  </div>
  <script>
    $(function() {
      var JerseyWeatherAPI = "https://prodgojweatherstorage.blob.core.windows.net/data/jerseyForecast.json";
      $.getJSON(JerseyWeatherAPI).done(function(data) {
        var now = new Date().getHours();
        var icon;
        switch (now) {
          case (now >= 21):
            //evening
            icon = data.forecastDay[0].iconEvening;
            $('.weather img').attr("alt", data.forecastDay[0].iconEveningToolTip);
            break;
          case (now >= 13):
            //afternoon
            icon = data.forecastDay[0].iconAfternoon;
            $('.weather img').attr("alt", data.forecastDay[0].iconAfternoonToolTip);
            break;
          default:
            //morning
            icon = data.forecastDay[0].iconMorning;
            $('.weather img').attr("alt", data.forecastDay[0].iconMorningToolTip)
        }
        icon = icon.charAt(0).toUpperCase() + icon.slice(1).toLowerCase();
        $('.weather img').attr("src", "https://govje.azureedge.net/JerseyMet/Icons/" + icon)
        $('.curtemp span').text(data.currentTemprature.replace("°C", " °C"));
      })
    });
  </script>
</form>

GET /pages/search.aspx

<form id="searchMobile" class="site-search" action="/pages/search.aspx" method="get">
  <div class="container">
    <div class="row">
      <div class="input-group">
        <label for="queryMobile" class="accessibility">Search gov.je</label>
        <input type="text" id="queryMobile" name="query" class="form-control">
        <span class="input-group-btn">
          <button class="btn btn-default" type="submit">Search</button>
        </span>
      </div>
    </div>
  </div>
</form>

POST ./default.aspx

<form method="post" action="./default.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
  <div class="aspNetHidden">
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
    <input type="hidden" name="__REQUESTDIGEST" id="__REQUESTDIGEST" value="noDigest">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
      value="/wEPDwUKLTMzNzgxOTcxOA9kFgJmD2QWBAIBD2QWBAIZD2QWAmYPZBYCAgEPFgIeE1ByZXZpb3VzQ29udHJvbE1vZGULKYgBTWljcm9zb2Z0LlNoYXJlUG9pbnQuV2ViQ29udHJvbHMuU1BDb250cm9sTW9kZSwgTWljcm9zb2Z0LlNoYXJlUG9pbnQsIFZlcnNpb249MTYuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49NzFlOWJjZTExMWU5NDI5YwFkAh8PZBYCAgMPZBYCZg9kFgJmDzwrAAYAZAIDD2QWBGYPZBYIAgMPDxYCHgtOYXZpZ2F0ZVVybAUZL2NpdGl6ZW4vcGFnZXMvbG9naW4uYXNweGRkAgUPDxYCHwEFVmh0dHBzOi8vb25lLmdvdi5qZS9sb2dpbj9yZXR1cm5fdXJsPWh0dHBzOi8vb25lLmdvdi5qZS9lbiZhbXA7bGFuZz1lbiZhbXA7YXBwTmFtZT1TZWxmZGQCBw8PFgIfAQUfaHR0cHM6Ly93d3cuY3VzdG9tcy5nc3QuZ292LmplL2RkAgkPDxYCHwEFO2h0dHBzOi8vd3d3Lmdvdi5qZS9Xb3JraW5nL0pvYkNhcmVlckFkdmljZS9QYWdlcy9Mb2dpbi5hc3B4ZGQCAg8PFgIeB1Zpc2libGVoZGRkyIvm9UMHLFn2pz7JQKkCgEswPv5A4lHKwWTbpVzOLC4=">
  </div>
  <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['aspnetForm'];
    if (!theForm) {
      theForm = document.aspnetForm;
    }

    function __doPostBack(eventTarget, eventArgument) {
      if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
      }
    }
    //]]>
  </script>
  <script type="text/javascript">
    //<![CDATA[
    var MSOWebPartPageFormName = 'aspnetForm';
    var g_presenceEnabled = true;
    var g_wsaEnabled = false;
    var g_correlationId = '955e26a1-2059-b07a-b9f7-d5809b793324';
    var g_wsaQoSEnabled = false;
    var g_wsaQoSDataPoints = [];
    var g_wsaRUMEnabled = false;
    var g_wsaLCID = 1033;
    var g_wsaListTemplateId = 850;
    var g_wsaSiteTemplateId = 'BLANKINTERNET#0';
    var _spPageContextInfo = {
      "webServerRelativeUrl": "/",
      "webAbsoluteUrl": "https://www.gov.je",
      "viewId": "",
      "listId": "{2b2afc4e-ac41-4835-acc6-d6721897cadf}",
      "listPermsMask": {
        "High": 16,
        "Low": 196673
      },
      "listUrl": "/Pages",
      "listTitle": "Pages",
      "listBaseTemplate": 850,
      "viewOnlyExperienceEnabled": false,
      "blockDownloadsExperienceEnabled": false,
      "idleSessionSignOutEnabled": false,
      "cdnPrefix": "",
      "siteAbsoluteUrl": "https://www.gov.je",
      "siteId": "{11595199-3e08-438f-8bc2-426a890248af}",
      "showNGSCDialogForSyncOnTS": false,
      "supportPoundStorePath": true,
      "supportPercentStorePath": true,
      "siteSubscriptionId": null,
      "CustomMarkupInCalculatedFieldDisabled": true,
      "AllowCustomMarkupInCalculatedField": false,
      "isSPO": false,
      "farmLabel": null,
      "serverRequestPath": "/pages/default.aspx",
      "layoutsUrl": "_layouts/15",
      "webId": "{f8e0d1a5-2ada-400f-bddd-efa5689e750a}",
      "webTitle": "Government of Jersey",
      "webTemplate": "53",
      "webTemplateConfiguration": "BLANKINTERNET#0",
      "webDescription": "Information and public services for the Island of Jersey",
      "tenantAppVersion": "1222118537",
      "isAppWeb": false,
      "webLogoUrl": "/_layouts/images/titlegraphic.gif",
      "webLanguage": 1033,
      "currentLanguage": 1033,
      "currentUICultureName": "en-US",
      "currentCultureName": "en-GB",
      "currentCultureLCID": 2057,
      "env": null,
      "nid": 0,
      "fid": 0,
      "serverTime": "2024-05-07T15:46:53.0873225Z",
      "siteClientTag": "3291$$16.0.10404.20003",
      "crossDomainPhotosEnabled": false,
      "openInClient": false,
      "Has2019Era": true,
      "webUIVersion": 15,
      "webPermMasks": {
        "High": 16,
        "Low": 196673
      },
      "pageListId": "{2b2afc4e-ac41-4835-acc6-d6721897cadf}",
      "pageItemId": 6,
      "pagePermsMask": {
        "High": 16,
        "Low": 196673
      },
      "pagePersonalizationScope": 1,
      "userEmail": "",
      "userId": 0,
      "userLoginName": null,
      "userDisplayName": null,
      "isAnonymousUser": true,
      "isAnonymousGuestUser": false,
      "isEmailAuthenticationGuestUser": false,
      "isExternalGuestUser": false,
      "systemUserKey": null,
      "alertsEnabled": true,
      "siteServerRelativeUrl": "/",
      "allowSilverlightPrompt": "True",
      "themeCacheToken": "/::331:",
      "themedCssFolderUrl": null,
      "themedImageFileNames": null,
      "modernThemingEnabled": true,
      "isSiteAdmin": false,
      "ExpFeatures": [480216468, 1884350801, 1158731092, 62197791, 538521105, 335811073, 4194306, 34614301, 268500996, -1946025984, 28445328, -2147475455, 134291456, 65536, 288, 950272, 1282, 808326148, 134217873, 0, 0, -1073217536, 545285252,
        18350656, -467402752, 6291457, -2147483644, 1074794496, -1728053184, 1845537108, 622628, 4102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
      ],
      "killSwitches": {},
      "InternalValidAuthorities": ["admin.gov.je", "www-sp19.gov.je", "www.gov.je", "edit19.gov.je", "edit.gov.je", "admin.jerseylaw.je", "edit.jerseylaw.je", "edit19.jerseylaw.je", "www.jerseylaw.je", "www-sp19.jerseylaw.je"],
      "CorrelationId": "955e26a1-2059-b07a-b9f7-d5809b793324",
      "hasManageWebPermissions": false,
      "isNoScriptEnabled": false,
      "groupId": null,
      "groupHasHomepage": true,
      "groupHasQuickLaunchConversationsLink": false,
      "departmentId": null,
      "hubSiteId": null,
      "hasPendingWebTemplateExtension": false,
      "isHubSite": false,
      "isWebWelcomePage": false,
      "siteClassification": "",
      "hideSyncButtonOnODB": false,
      "showNGSCDialogForSyncOnODB": false,
      "sitePagesEnabled": false,
      "sitePagesFeatureVersion": 0,
      "DesignPackageId": "00000000-0000-0000-0000-000000000000",
      "groupType": null,
      "groupColor": "#e3068b",
      "siteColor": "#e3068b",
      "headerEmphasis": 0,
      "navigationInfo": null,
      "guestsEnabled": false,
      "MenuData": {
        "SignInUrl": "/_layouts/15/Authenticate.aspx?Source=%2Fpages%2Fdefault%2Easpx"
      },
      "RecycleBinItemCount": -1,
      "PublishingFeatureOn": true,
      "PreviewFeaturesEnabled": false,
      "disableAppViews": false,
      "disableFlows": false,
      "serverRedirectedUrl": null,
      "formDigestValue": "0x44939AEB83653B3AA5B5379ECB2DE5F1764838CF370BECF851A7B814F6CBCB2E35A0249156A191583947859C35BE577A6C51B089D9EA753B80E544945FFDC52F,07 May 2024 15:46:53 -0000",
      "maximumFileSize": 10240,
      "formDigestTimeoutSeconds": 1800,
      "canUserCreateMicrosoftForm": false,
      "canUserCreateVisioDrawing": true,
      "readOnlyState": null,
      "isTenantDevSite": false,
      "preferUserTimeZone": false,
      "userTimeZoneData": null,
      "userTime24": false,
      "userFirstDayOfWeek": null,
      "webTimeZoneData": null,
      "webTime24": false,
      "webFirstDayOfWeek": null,
      "isSelfServiceSiteCreationEnabled": null,
      "alternateWebAppHost": "",
      "aadTenantId": "",
      "aadUserId": "",
      "aadInstanceUrl": "",
      "msGraphEndpointUrl": "https://",
      "allowInfectedDownload": true
    };
    _spPageContextInfo.updateFormDigestPageLoaded = new Date();
    _spPageContextInfo.clientServerTimeDelta = new Date(_spPageContextInfo.serverTime) - new Date();
    if (typeof(define) == 'function') {
      define('SPPageContextInfo', [], function() {
        return _spPageContextInfo;
      });
    } //]]>
  </script>
  <script type="text/javascript" src="/_layouts/15/1033/initstrings.js?rev=QlErYdzLzSjiOd7I98%2Biyw%3D%3DTAG0"></script>
  <script type="text/javascript" src="/_layouts/15/init.js?rev=l99VNt12m4SnIi9AN%2FdbAA%3D%3DTAG0"></script>
  <script type="text/javascript">
    //<![CDATA[
    function WebForm_OnSubmit() {
      UpdateFormDigest('\u002f', 1440000);
      return true;
    }
    //]]>
  </script>
  <div class="aspNetHidden">
    <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="83C6964A">
  </div>
  <div class="container">
    <a id="startcontent" class="accessibility"></a>
    <!--start content-->
    <h1 class="accessibility">Information and public services for the Island of Jersey</h1>
    <div class="row promotedItems d-none d-md-flex">
      <div class="col-md-4">
        <a class="articleLink" href="https://www.gov.je/Health/Coronavirus/Vaccine/Pages/BookCOVID19Vaccine.aspx"><img src="https://www.gov.je/Asset%20library/Spring%20Booster%202024%20homepage.png?RenditionID=10" alt=""><h2>Get your spring booster vaccination </h2></a>
      </div>
      <div class="col-md-4">
        <a class="articleLink" href="https://www.gov.je/Government/Consultations/Pages/HospitalConceptDesign.aspx"><img src="https://www.gov.je/Asset%20library/Overdale%20Acute%20Hospital%20Concept%20Design%20Consultation%20homepage%20article.jpg?RenditionID=10" alt=""><h2>Have your say</h2></a>
      </div>
      <div class="col-md-4">
        <a class="articleLink" href="https://www.gov.je/TaxesMoney/IncomeTax/Individuals/YourTaxReturn/Pages/FileYourPersonalTaxReturn.aspx"><img src="/Asset%20library/Tax%20Returns%202023%20Homepage%20Article.png?RenditionID=10" alt=""><h2>File your 2023 tax return</h2></a>
      </div>
    </div>
    <div class="row">
      <div class="col-lg-12">
        <section class="homepage-accordion">
          <div class="row d-flex d-md-none">
            <div class="col-sm-12">
              <div class="card-group" id="accordion">
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="opened" data-toggle="collapse" data-parent="#accordion" href="#collapse0">Most popular</a></h2>
                  </div>
                  <div id="collapse0" class="card-collapse collapse in show" data-parent="#accordion">
                    <div class="card-body">
                      <ul>
                        <li><a href="/forms/Pages/A-ZForms.aspx">A to Z of forms and online services</a></li>
                        <li><a href="/Pages/contacts.aspx">Contacts</a></li>
                        <li><a href="/health/coronavirus/Pages/index.aspx">Coronavirus (COVID-19)</a></li>
                        <li><a href="/Government/NonexecLegal/JudicialGreffe/Pages/CourtLists.aspx">Court lists</a></li>
                        <li><a href="/Working/JobCareerAdvice/Pages/Jobs.aspx">Jobs</a></li>
                        <li><a href="/news">Newsroom</a></li>
                        <li><a href="/weather">Weather</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseBrowse">Browse by subject</a></h2>
                  </div>
                  <div id="collapseBrowse" class="card-collapse collapse">
                    <div class="card-body">
                      <h3><a href="/Benefits/Pages/default.aspx">Benefits and financial support</a></h3>
                      <ul>
                        <li><a href="/Benefits/IncomeSupport/Pages/index.aspx"> Income Support</a></li>
                        <li><a href="/Benefits/MaternityFamilySupport/Pages/index.aspx"> Parental and family</a></li>
                        <li><a href="/Benefits/PensionsRetirement/Pages/index.aspx"> Pensions</a></li>
                      </ul>
                      <h3><a href="/Industry/Pages/default.aspx">Business, industry and finance</a></h3>
                      <ul>
                        <li><a href="/Industry/RetailHospitality/FoodDrink/Pages/EatSafeRatings.aspx"> Eat Safe</a></li>
                        <li><a href="/Industry/FarmingFishing/Pages/default.aspx"> Farming and fishing</a></li>
                        <li><a href="/INDUSTRY/HEALTHSAFETYWORK/HSI/Pages/default.aspx"> Health and safety at work</a></li>
                      </ul>
                      <h3><a href="/Caring/Pages/default.aspx">Caring and support</a></h3>
                      <ul>
                        <li><a href="/caring/children/childcare/pages/index.aspx"> Childcare</a></li>
                        <li><a href="/Caring/ChildrenAndFamiliesHub/Pages/ChildrenAndFamiliesHubHomepage.aspx"> Children and Families Hub</a></li>
                        <li><a href="/Caring/Children/SocialCareService/Pages/index.aspx"> Children's Social Care Service</a></li>
                      </ul>
                      <h3><a href="/CrimeJustice/Pages/default.aspx">Crime and justice</a></h3>
                      <ul>
                        <li><a href="/CrimeJustice/CommunityService/Pages/index.aspx"> Community service</a></li>
                        <li><a href="/CrimeJustice/CriminalRecordsChecks/Pages/index.aspx"> Criminal records checks</a></li>
                        <li><a href="/CrimeJustice/Court/Pages/PettyDebtsCourt.aspx"> Petty debts court</a></li>
                        <li><a href="/Government/NonexecLegal/ProbationAfterCareService/Pages/index.aspx"> Probation</a></li>
                      </ul>
                      <h3><a href="/Education/Pages/default.aspx">Education</a></h3>
                      <ul>
                        <li><a href="/Education/Schools/FindingSchool/Pages/PrimarySchools.aspx"> Primary schools</a></li>
                        <li><a href="/Education/Schools/Pages/default.aspx"> Schools</a></li>
                        <li><a href="/education/schools/schoollife/pages/termdates.aspx"> Term dates</a></li>
                      </ul>
                      <h3><a href="/Working/Pages/default.aspx">Employment, careers and skills</a></h3>
                      <ul>
                        <li><a href="/WORKING/CONTRIBUTIONS/Pages/default.aspx"> Contributions and registration cards</a></li>
                        <li><a href="/Working/Careers/16To19YearOlds/EnteringHigherEducation/FinancingHigherEducationCourses/Pages/index.aspx"> Financing higher education courses</a></li>
                        <li><a href="/Working/WorkingForTheStates/Pages/index.aspx"> Government employee information</a></li>
                        <li><a href="/Working/SkillsCareersHigherEducation/Pages/home.aspx"> Skills, careers and higher education</a></li>
                      </ul>
                      <h3><a href="/Environment/Pages/default.aspx">Environment</a></h3>
                      <ul>
                        <li><a href="/Environment/GenerateEnergy/Pages/ClimateEmergency.aspx"> Climate Emergency</a></li>
                        <li><a href="/environment/wastereducereuserecycle/whyrecycle/pages/lacollettehouseholdrecyclingfacilities.aspx"> La Collette household recycling facilities</a></li>
                        <li><a href="/Environment/ProtectingEnvironment/Pages/default.aspx"> Protecting the environment</a></li>
                        <li><a href="/Environment/WasteReduceReuseRecycle/Pages/default.aspx"> Recycling and waste</a></li>
                      </ul>
                      <h3><a href="/Government/Pages/default.aspx">Government and administration</a></h3>
                      <ul>
                        <li><a href="/Government/Departments/Pages/default.aspx"> Departments</a></li>
                        <li><a href="/Government/FreedomOfInformation/Pages/index.aspx"> Freedom of Information (FOI)</a></li>
                        <li><a href="/government/pages/statesreports.aspx"> States Reports</a></li>
                        <li><a href="/government/comments/Pages/index.aspx"> Submit feedback</a></li>
                      </ul>
                      <h3><a href="/Health/Pages/default.aspx">Health and wellbeing</a></h3>
                      <ul>
                        <li><a href="https://www.gov.je/health/coronavirus/Pages/index.aspx"> Coronavirus (COVID-19)</a></li>
                        <li><a href="/health/waitinglists/pages/index.aspx"> Hospital waiting lists</a></li>
                        <li><a href="/Health/Hospitals/HospitalServices/Pages/index.aspx"> Hospital wards </a></li>
                        <li><a href="/health/hospitals/abouthospitals/pages/patientvisitoradvice.aspx"> Patient and visitor support and feedback</a></li>
                      </ul>
                      <h3><a href="/Home/Pages/default.aspx">Home and community</a></h3>
                      <ul>
                        <li><a href="/Home/RentingBuying/BuyersGuide/Pages/index.aspx"> Home buyer's guide</a></li>
                        <li><a href="https://www.gov.je/home/housingadviceservice/Pages/index.aspx"> Housing Advice Service</a></li>
                        <li><a href="/Home/RentingBuying/HousingLaws/Pages/index.aspx"> Housing rights and residential statuses</a></li>
                        <li><a href="/Home/Parish/Pages/index.aspx"> Your parish</a></li>
                      </ul>
                      <h3><a href="/Leisure/Pages/default.aspx">Leisure, culture and entertainment</a></h3>
                      <ul>
                        <li><a href="/Leisure/Libraries/Pages/index.aspx"> Library services</a></li>
                        <li><a href="/Leisure/Sport/Pages/default.aspx"> Sport</a></li>
                        <li><a href="/Leisure/Events/WhatsOn/Pages/index.aspx"> What's on</a></li>
                      </ul>
                      <h3><a href="/LifeEvents/Pages/default.aspx">Life events</a></h3>
                      <ul>
                        <li><a href="/LifeEvents/SeparationDivorce/Pages/index.aspx"> Divorce</a></li>
                        <li><a href="/Government/Departments/CustomerLocalServices/OfficeSuperintendentRegistrar/MarriageCivilPartnerships/Pages/home.aspx"> Getting married</a></li>
                        <li><a href="/LifeEvents/MovingToJersey/Pages/home.aspx"> Moving to Jersey</a></li>
                      </ul>
                      <h3><a href="/PlanningBuilding/Pages/default.aspx">Planning and building</a></h3>
                      <ul>
                        <li><a href="/PlanningBuilding/LawsRegs/Pages/default.aspx"> Laws and guidance</a></li>
                        <li><a href="/PlanningBuilding/MakingApplication/Pages/default.aspx"> Making an application</a></li>
                        <li><a href="/PLANNINGBUILDING/PERMISSION/Pages/default.aspx"> Permissions needed</a></li>
                      </ul>
                      <h3><a href="/statisticsperformance/Pages/index.aspx">Statistics and performance</a></h3>
                      <ul>
                        <li><a href="/StatisticsPerformance/HousingLiving/Pages/HousePrice.aspx"> House price statistics</a></li>
                        <li><a href="/StatisticsPerformance/BusinessEconomy/Pages/Inflation.aspx"> Retail prices index (inflation)</a></li>
                        <li><a href="/StatisticsPerformance/PublicationSchedules/Pages/StatisticalPublications.aspx"> Statistical publications</a></li>
                      </ul>
                      <h3><a href="/StayingSafe/Pages/default.aspx">Staying safe</a></h3>
                      <ul>
                        <li><a href="/StayingSafe/BeSafeOnline/Pages/index.aspx"> Be safe online</a></li>
                        <li><a href="/StayingSafe/EmergencyPlanning/Pages/index.aspx"> Emergency planning</a></li>
                        <li><a href="/StayingSafe/FireSafety/Pages/default.aspx"> Fire safety</a></li>
                      </ul>
                      <h3><a href="/TaxesMoney/Pages/default.aspx">Taxes and your money</a></h3>
                      <ul>
                        <li><a href="/TaxesMoney/IncomeTax/Individuals/YourTaxReturn/Pages/FileYourPersonalTaxReturn.aspx"> File your tax return</a></li>
                        <li><a href="/TaxesMoney/GST/Pages/default.aspx"> GST</a></li>
                        <li><a href="/TaxesMoney/IncomeTax/Individuals/Pages/default.aspx"> Individuals' tax information</a></li>
                        <li><a href="/TaxesMoney/IncomeTax/Companies/CompanyTaxGuidance/Pages/OnlineCompanyReturn.aspx"> Submit company tax return</a></li>
                        <li><a href="https://www.gov.je/TaxesMoney/IncomeTax/Technical/Guidelines/Pages/TaxQuestionsAnswered.aspx"> Tax online services</a></li>
                      </ul>
                      <h3><a href="/Travel/Pages/default.aspx">Travel and transport</a></h3>
                      <ul>
                        <li><a href="/Travel/InformationAdvice/Pages/default.aspx"> Customs and travel advice</a></li>
                        <li><a href="/travel/motoring/parking/pages/carparkspaces.aspx"> Live available car park spaces</a></li>
                        <li><a href="/Travel/Motoring/Pages/default.aspx"> Motoring</a></li>
                        <li><a href="/Travel/Passports/Pages/default.aspx"> Passports</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse1">Pay it</a></h2>
                  </div>
                  <div id="collapse1" class="card-collapse collapse" data-parent="#accordion">
                    <div class="card-body">
                      <ul>
                        <li><a href="/Working/Contributions/Payments/Pages/PayContributionsInstalments.aspx">Contributions and instalments</a></li>
                        <li><a href="https://www.customs.gst.gov.je">Customs duties </a></li>
                        <li><a href="https://one.gov.je/service/Friends_and_family_top_up_for_prisoners">Friends and family top up for prisoners</a></li>
                        <li><a href="https://www.customs.gst.gov.je">GST declarations</a></li>
                        <li><a href="https://one.gov.je/service/Pay_your_invoice">Invoices</a></li>
                        <li><a href="https://webservices.gov.je/ParkingPayments/PCNStart.aspx">Parking fine</a></li>
                        <li><a href="https://one.gov.je/service/Pay_your_taxes">Tax, employer ITIS and domestic GST</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse2">Report it</a></h2>
                  </div>
                  <div id="collapse2" class="card-collapse collapse" data-parent="#accordion">
                    <div class="card-body">
                      <ul>
                        <li><a href="/Benefits/BenefitFraud/Pages/ReportBenefitThiefForm.aspx">Benefit fraud</a></li>
                        <li><a href="https://report.jersey.police.uk/">Crime </a></li>
                        <li><a href="https://crimestoppers-uk.org/give-information">Crimestoppers: report a crime anonymously </a></li>
                        <li><a href="/stayingsafe/community/crime/pages/reportingsmugglingdutyevasionilligealimmigration.aspx">Customs or immigration offence</a></li>
                        <li><a href="/Travel/Motoring/Pages/DefectiveVehicleForm.aspx">Defective vehicle</a></li>
                        <li>
                          <a href="https://one.gov.je/en/AchieveForms/?form_uri=sandbox-publish://AF-Process-c828a855-6eba-41f1-ad35-34d8480cca11/AF-Stage-fb42be46-44f4-4e4a-acb4-bd0ea1f7a82d/definition.json&amp;redirectlink=%2Fen&amp;cancelRedirectLink=%2Fen&amp;consentMessage=yes">Fire safety concerns</a>
                        </li>
                        <li><a href="/pages/lovejersey.aspx">Love Jersey: fault reporting</a></li>
                        <li><a href="/TaxesMoney/Compliance/Pages/ReportTaxFraud.aspx">Tax fraud, avoidance or evasion</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse3">Tell us</a></h2>
                  </div>
                  <div id="collapse3" class="card-collapse collapse" data-parent="#accordion">
                    <div class="card-body">
                      <ul>
                        <li><a href="/working/startbusiness/pages/businessceasedtrading.aspx">Business has ceased trading</a></li>
                        <li><a href="https://www.gov.je/government/comments/Pages/index.aspx">Comments, complaints and suggestions</a></li>
                        <li><a href="/Government/Consultations/">Consultations</a></li>
                        <li><a href="/TaxesMoney/IncomeTax/Individuals/YourTaxReturn/Pages/FileYourPersonalTaxReturn.aspx">File your tax return</a></li>
                        <li><a href="/benefits/incomesupport/pages/changeofcircumstance.aspx">Income Support: changes in circumstances</a></li>
                        <li><a href="/lifeevents/leavingtheisland/pages/leavingchecklist.aspx">Leaving the Island</a></li>
                        <li><a href="https://one.gov.je/service/Personal_Tax_Enquiry ">Personal tax enquiry</a></li>
                        <li><a href="/Pages/UpdateContactDetails.aspx">Update your contact details</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse4">Gazette</a></h2>
                  </div>
                  <div id="collapse4" class="card-collapse collapse" data-parent="#accordion">
                    <div class="card-body">
                      <ul>
                        <li><a href="/gazette/Pages/default.aspx">All official notices</a></li>
                        <li><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%82456e6163746d656e74%22">Enactment notices</a></li>
                        <li><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%82506172697368206e6f74696365%22">Parish notices</a></li>
                        <li><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%825075626c6963206e6f74696365%22">Public notices</a></li>
                        <li><a href="https://www.gov.je/gazette/pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%8253616e6374696f6e73%22">Sanctions notices</a></li>
                        <li><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%8254656e646572%22">Tender notices</a></li>
                      </ul>
                    </div>
                  </div>
                </div>
                <div class="card card-default">
                  <div class="card-header">
                    <h2 class="card-title"><a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse5">Work with us</a></h2>
                  </div>
                  <div id="collapse5" class="card-collapse collapse" data-parent="#accordion">
                    <div class="card-body">
                      <ul>
                        <li><a href="https://www.gov.je/Working/WorkingForTheGovernment/Pages/ApplyGovernmentJobs.aspx">Apply for Government of Jersey jobs</a></li>
                        <li><a href="https://careers.gov.je/">Search jobs on Jersey Public Service Careers </a></li>
                      </ul>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </section>
        <section class="homepage-tabs">
          <div class="row d-none d-md-flex">
            <div class="col-sm-12">
              <ul class="nav nav-tabs">
                <li class="nav-item"><a class="nav-link active" href="#tab0" data-toggle="tab">Browse</a></li>
                <li class="nav-item"><a class="nav-link" href="#tab1" data-toggle="tab">Pay it</a></li>
                <li class="nav-item"><a class="nav-link" href="#tab2" data-toggle="tab">Report it</a></li>
                <li class="nav-item"><a class="nav-link" href="#tab3" data-toggle="tab">Tell us</a></li>
                <li class="nav-item"><a class="nav-link" href="#tab4" data-toggle="tab">Gazette</a></li>
                <li class="nav-item"><a class="nav-link" href="#tab5" data-toggle="tab">Work with us</a></li>
              </ul>
              <div class="tab-content">
                <div class="tab-pane active" id="tab0">
                  <div class="row">
                    <div id="Browse">
                      <div class="row">
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Benefits/Pages/default.aspx">Benefits and financial support</a></h3>
                          <ul>
                            <li><a href="/Benefits/IncomeSupport/Pages/index.aspx"> Income Support</a></li>
                            <li><a href="/Benefits/MaternityFamilySupport/Pages/index.aspx"> Parental and family</a></li>
                            <li><a href="/Benefits/PensionsRetirement/Pages/index.aspx"> Pensions</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Industry/Pages/default.aspx">Business, industry and finance</a></h3>
                          <ul>
                            <li><a href="/Industry/RetailHospitality/FoodDrink/Pages/EatSafeRatings.aspx"> Eat Safe</a></li>
                            <li><a href="/Industry/FarmingFishing/Pages/default.aspx"> Farming and fishing</a></li>
                            <li><a href="/INDUSTRY/HEALTHSAFETYWORK/HSI/Pages/default.aspx"> Health and safety at work</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Caring/Pages/default.aspx">Caring and support</a></h3>
                          <ul>
                            <li><a href="/caring/children/childcare/pages/index.aspx"> Childcare</a></li>
                            <li><a href="/Caring/ChildrenAndFamiliesHub/Pages/ChildrenAndFamiliesHubHomepage.aspx"> Children and Families Hub</a></li>
                            <li><a href="/Caring/Children/SocialCareService/Pages/index.aspx"> Children's Social Care Service</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/CrimeJustice/Pages/default.aspx">Crime and justice</a></h3>
                          <ul>
                            <li><a href="/CrimeJustice/CommunityService/Pages/index.aspx"> Community service</a></li>
                            <li><a href="/CrimeJustice/CriminalRecordsChecks/Pages/index.aspx"> Criminal records checks</a></li>
                            <li><a href="/CrimeJustice/Court/Pages/PettyDebtsCourt.aspx"> Petty debts court</a></li>
                            <li><a href="/Government/NonexecLegal/ProbationAfterCareService/Pages/index.aspx"> Probation</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Education/Pages/default.aspx">Education</a></h3>
                          <ul>
                            <li><a href="/Education/Schools/FindingSchool/Pages/PrimarySchools.aspx"> Primary schools</a></li>
                            <li><a href="/Education/Schools/Pages/default.aspx"> Schools</a></li>
                            <li><a href="/education/schools/schoollife/pages/termdates.aspx"> Term dates</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Working/Pages/default.aspx">Employment, careers and skills</a></h3>
                          <ul>
                            <li><a href="/WORKING/CONTRIBUTIONS/Pages/default.aspx"> Contributions and registration cards</a></li>
                            <li><a href="/Working/Careers/16To19YearOlds/EnteringHigherEducation/FinancingHigherEducationCourses/Pages/index.aspx"> Financing higher education courses</a></li>
                            <li><a href="/Working/WorkingForTheStates/Pages/index.aspx"> Government employee information</a></li>
                            <li><a href="/Working/SkillsCareersHigherEducation/Pages/home.aspx"> Skills, careers and higher education</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Environment/Pages/default.aspx">Environment</a></h3>
                          <ul>
                            <li><a href="/Environment/GenerateEnergy/Pages/ClimateEmergency.aspx"> Climate Emergency</a></li>
                            <li><a href="/environment/wastereducereuserecycle/whyrecycle/pages/lacollettehouseholdrecyclingfacilities.aspx"> La Collette household recycling facilities</a></li>
                            <li><a href="/Environment/ProtectingEnvironment/Pages/default.aspx"> Protecting the environment</a></li>
                            <li><a href="/Environment/WasteReduceReuseRecycle/Pages/default.aspx"> Recycling and waste</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Government/Pages/default.aspx">Government and administration</a></h3>
                          <ul>
                            <li><a href="/Government/Departments/Pages/default.aspx"> Departments</a></li>
                            <li><a href="/Government/FreedomOfInformation/Pages/index.aspx"> Freedom of Information (FOI)</a></li>
                            <li><a href="/government/pages/statesreports.aspx"> States Reports</a></li>
                            <li><a href="/government/comments/Pages/index.aspx"> Submit feedback</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Health/Pages/default.aspx">Health and wellbeing</a></h3>
                          <ul>
                            <li><a href="https://www.gov.je/health/coronavirus/Pages/index.aspx"> Coronavirus (COVID-19)</a></li>
                            <li><a href="/health/waitinglists/pages/index.aspx"> Hospital waiting lists</a></li>
                            <li><a href="/Health/Hospitals/HospitalServices/Pages/index.aspx"> Hospital wards </a></li>
                            <li><a href="/health/hospitals/abouthospitals/pages/patientvisitoradvice.aspx"> Patient and visitor support and feedback</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Home/Pages/default.aspx">Home and community</a></h3>
                          <ul>
                            <li><a href="/Home/RentingBuying/BuyersGuide/Pages/index.aspx"> Home buyer's guide</a></li>
                            <li><a href="https://www.gov.je/home/housingadviceservice/Pages/index.aspx"> Housing Advice Service</a></li>
                            <li><a href="/Home/RentingBuying/HousingLaws/Pages/index.aspx"> Housing rights and residential statuses</a></li>
                            <li><a href="/Home/Parish/Pages/index.aspx"> Your parish</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Leisure/Pages/default.aspx">Leisure, culture and entertainment</a></h3>
                          <ul>
                            <li><a href="/Leisure/Libraries/Pages/index.aspx"> Library services</a></li>
                            <li><a href="/Leisure/Sport/Pages/default.aspx"> Sport</a></li>
                            <li><a href="/Leisure/Events/WhatsOn/Pages/index.aspx"> What's on</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/LifeEvents/Pages/default.aspx">Life events</a></h3>
                          <ul>
                            <li><a href="/LifeEvents/SeparationDivorce/Pages/index.aspx"> Divorce</a></li>
                            <li><a href="/Government/Departments/CustomerLocalServices/OfficeSuperintendentRegistrar/MarriageCivilPartnerships/Pages/home.aspx"> Getting married</a></li>
                            <li><a href="/LifeEvents/MovingToJersey/Pages/home.aspx"> Moving to Jersey</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/PlanningBuilding/Pages/default.aspx">Planning and building</a></h3>
                          <ul>
                            <li><a href="/PlanningBuilding/LawsRegs/Pages/default.aspx"> Laws and guidance</a></li>
                            <li><a href="/PlanningBuilding/MakingApplication/Pages/default.aspx"> Making an application</a></li>
                            <li><a href="/PLANNINGBUILDING/PERMISSION/Pages/default.aspx"> Permissions needed</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/statisticsperformance/Pages/index.aspx">Statistics and performance</a></h3>
                          <ul>
                            <li><a href="/StatisticsPerformance/HousingLiving/Pages/HousePrice.aspx"> House price statistics</a></li>
                            <li><a href="/StatisticsPerformance/BusinessEconomy/Pages/Inflation.aspx"> Retail prices index (inflation)</a></li>
                            <li><a href="/StatisticsPerformance/PublicationSchedules/Pages/StatisticalPublications.aspx"> Statistical publications</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/StayingSafe/Pages/default.aspx">Staying safe</a></h3>
                          <ul>
                            <li><a href="/StayingSafe/BeSafeOnline/Pages/index.aspx"> Be safe online</a></li>
                            <li><a href="/StayingSafe/EmergencyPlanning/Pages/index.aspx"> Emergency planning</a></li>
                            <li><a href="/StayingSafe/FireSafety/Pages/default.aspx"> Fire safety</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/TaxesMoney/Pages/default.aspx">Taxes and your money</a></h3>
                          <ul>
                            <li><a href="/TaxesMoney/IncomeTax/Individuals/YourTaxReturn/Pages/FileYourPersonalTaxReturn.aspx"> File your tax return</a></li>
                            <li><a href="/TaxesMoney/GST/Pages/default.aspx"> GST</a></li>
                            <li><a href="/TaxesMoney/IncomeTax/Individuals/Pages/default.aspx"> Individuals' tax information</a></li>
                            <li><a href="/TaxesMoney/IncomeTax/Companies/CompanyTaxGuidance/Pages/OnlineCompanyReturn.aspx"> Submit company tax return</a></li>
                            <li><a href="https://www.gov.je/TaxesMoney/IncomeTax/Technical/Guidelines/Pages/TaxQuestionsAnswered.aspx"> Tax online services</a></li>
                          </ul>
                        </div>
                        <div class="col-12 col-md-6 col-lg-4">
                          <h3><a href="/Travel/Pages/default.aspx">Travel and transport</a></h3>
                          <ul>
                            <li><a href="/Travel/InformationAdvice/Pages/default.aspx"> Customs and travel advice</a></li>
                            <li><a href="/travel/motoring/parking/pages/carparkspaces.aspx"> Live available car park spaces</a></li>
                            <li><a href="/Travel/Motoring/Pages/default.aspx"> Motoring</a></li>
                            <li><a href="/Travel/Passports/Pages/default.aspx"> Passports</a></li>
                          </ul>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
                <div class="tab-pane" id="tab1">
                  <div class="row">
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/Working/Contributions/Payments/Pages/PayContributionsInstalments.aspx">Contributions and instalments</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://www.customs.gst.gov.je">Customs duties </a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://one.gov.je/service/Friends_and_family_top_up_for_prisoners">Friends and family top up for prisoners</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://www.customs.gst.gov.je">GST declarations</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://one.gov.je/service/Pay_your_invoice">Invoices</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://webservices.gov.je/ParkingPayments/PCNStart.aspx">Parking fine</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://one.gov.je/service/Pay_your_taxes">Tax, employer ITIS and domestic GST</a></div>
                  </div>
                </div>
                <div class="tab-pane" id="tab2">
                  <div class="row">
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/Benefits/BenefitFraud/Pages/ReportBenefitThiefForm.aspx">Benefit fraud</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://report.jersey.police.uk/">Crime </a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://crimestoppers-uk.org/give-information">Crimestoppers: report a crime anonymously </a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/stayingsafe/community/crime/pages/reportingsmugglingdutyevasionilligealimmigration.aspx">Customs or immigration offence</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/Travel/Motoring/Pages/DefectiveVehicleForm.aspx">Defective vehicle</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4">
                      <a target="_blank" href="https://one.gov.je/en/AchieveForms/?form_uri=sandbox-publish://AF-Process-c828a855-6eba-41f1-ad35-34d8480cca11/AF-Stage-fb42be46-44f4-4e4a-acb4-bd0ea1f7a82d/definition.json&amp;redirectlink=%2Fen&amp;cancelRedirectLink=%2Fen&amp;consentMessage=yes">Fire safety concerns</a>
                    </div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/pages/lovejersey.aspx">Love Jersey: fault reporting</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/TaxesMoney/Compliance/Pages/ReportTaxFraud.aspx">Tax fraud, avoidance or evasion</a></div>
                  </div>
                </div>
                <div class="tab-pane" id="tab3">
                  <div class="row">
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/working/startbusiness/pages/businessceasedtrading.aspx">Business has ceased trading</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/Government/Consultations/">Consultations</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/benefits/incomesupport/pages/changeofcircumstance.aspx">Income Support: changes in circumstances</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/lifeevents/leavingtheisland/pages/leavingchecklist.aspx">Leaving the Island</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/TaxesMoney/IncomeTax/Individuals/YourTaxReturn/Pages/FileYourPersonalTaxReturn.aspx">File your tax return</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://www.gov.je/government/comments/Pages/index.aspx">Comments, complaints and suggestions</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/Pages/UpdateContactDetails.aspx">Update your contact details</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://one.gov.je/service/Personal_Tax_Enquiry ">Personal tax enquiry</a></div>
                  </div>
                </div>
                <div class="tab-pane" id="tab4">
                  <div class="row">
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/gazette/Pages/default.aspx">All official notices</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%82456e6163746d656e74%22">Enactment notices</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%82506172697368206e6f74696365%22">Parish notices</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%825075626c6963206e6f74696365%22">Public notices</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a href="/gazette/Pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%8254656e646572%22">Tender notices</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://www.gov.je/gazette/pages/default.aspx?Navigator1=GazetteType&amp;Modifier1=%22%c7%82%c7%8253616e6374696f6e73%22">Sanctions notices</a></div>
                  </div>
                </div>
                <div class="tab-pane" id="tab5">
                  <div class="row">
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://www.gov.je/Working/WorkingForTheGovernment/Pages/ApplyGovernmentJobs.aspx">Apply for Government of Jersey jobs</a></div>
                    <div style="margin-bottom: 10px;" class="col-md-4"><a target="_blank" href="https://careers.gov.je/">Search jobs on Jersey Public Service Careers </a></div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </section>
      </div>
    </div>
    <div class="row">
      <div class="col-sm-12 SidebarSmall">
        <aside id="HomepageSidebar" class="row">
          <section id="newsHomepage" class="col-12 col-md-8">
            <h2><a title="View newsroom" href="/News/">Newsroom</a></h2>
            <div class="container p-0">
              <div class="row">
                <div class="col-12 col-md-6"><a class="articleLink" href="https://www.gov.je/News/2024/Pages/AssetReturnArrangementRepublicOfMozambique.aspx"><span>07 May 2024</span><h3>Return of £829,500 to Republic of Mozambique confirmed</h3></a>
                </div>
                <div class="col-12 col-md-6">
                  <a class="articleLink" href="https://www.gov.je/News/2024/Pages/ElectronicOutpatientPrescribingImplementedAcrossHealthAndCommunityServices.aspx"><span>03 May 2024</span><h3>Electronic outpatient prescribing implemented across Health and Community Services</h3></a>
                </div>
                <div class="col-12 col-md-6"><a class="articleLink" href="https://www.gov.je/News/2024/Pages/AnnualReportAndAccounts2023.aspx"><span>03 May 2024</span><h3>Annual Report and Accounts 2023</h3></a></div>
                <div class="col-12 col-md-6"><a class="articleLink" href="https://www.gov.je/News/2024/Pages/HousePriceIndexFirstQuarter2024.aspx"><span>02 May 2024</span><h3>Latest House Price Index report published</h3></a></div>
              </div>
              <hr class="d-md-none">
            </div>
          </section>
          <section id="Consult" class="col-12 col-md-4">
            <div class="consultnews">
              <h2><a title="View more consultations" href="/Government/Consultations/Pages/default.aspx">Consultations</a></h2>
              <div><a class="articleLink" href="/Government/Consultations/Pages/CentralRegisterAccess.aspx"><h3 class="event">Obliged Entity Central Register Access</h3></a></div>
              <div><a class="articleLink" href="/Government/Consultations/Pages/HospitalConceptDesign.aspx"><h3 class="event">Overdale Acute Hospital Concept Design Consultation</h3></a></div>
              <div>
                <a class="articleLink" href="/Government/Consultations/Pages/IndependentRegulationInspectionHospitalAmulanceServices.aspx"><h3 class="event">Regulation of Care (Jersey) Law 2014: Independent Regulation and Inspection of Hospital and Ambulance Services</h3></a>
              </div>
            </div>
          </section>
        </aside>
      </div>
    </div>
    <div class="row d-lg-none">
      <div class="col-sm-12 ">
        <div class="ServicesAZTablet">
          <div class="title">
            <h3>Contacts and services</h3>
          </div>
          <div class="links">
            <ul>
              <li><a title="filter by A" href="/Pages/contacts.aspx?filterBy=a">A</a></li>
              <li><a title="filter by B" href="/Pages/contacts.aspx?filterBy=b">B</a></li>
              <li><a title="filter by C" href="/Pages/contacts.aspx?filterBy=c">C</a></li>
              <li><a title="filter by D" href="/Pages/contacts.aspx?filterBy=d">D</a></li>
              <li><a title="filter by E" href="/Pages/contacts.aspx?filterBy=e">E</a></li>
              <li><a title="filter by F" href="/Pages/contacts.aspx?filterBy=f">F</a></li>
              <li><a title="filter by G" href="/Pages/contacts.aspx?filterBy=g">G</a></li>
              <li><a title="filter by H" href="/Pages/contacts.aspx?filterBy=h">H</a></li>
              <li><a title="filter by I" href="/Pages/contacts.aspx?filterBy=i">I</a></li>
              <li><a title="filter by J" href="/Pages/contacts.aspx?filterBy=j">J</a></li>
              <li><a title="filter by K" href="/Pages/contacts.aspx?filterBy=k">K</a></li>
              <li><a title="filter by L" href="/Pages/contacts.aspx?filterBy=l">L</a></li>
              <li><a title="filter by M" href="/Pages/contacts.aspx?filterBy=m">M</a></li>
            </ul>
            <hr>
            <ul>
              <li><a title="filter by N" href="/Pages/contacts.aspx?filterBy=n">N</a></li>
              <li><a title="filter by O" href="/Pages/contacts.aspx?filterBy=o">O</a></li>
              <li><a title="filter by P" href="/Pages/contacts.aspx?filterBy=p">P</a></li>
              <li><a title="filter by Q" href="/Pages/contacts.aspx?filterBy=q">Q</a></li>
              <li><a title="filter by R" href="/Pages/contacts.aspx?filterBy=r">R</a></li>
              <li><a title="filter by S" href="/Pages/contacts.aspx?filterBy=s">S</a></li>
              <li><a title="filter by T" href="/Pages/contacts.aspx?filterBy=t">T</a></li>
              <li><a title="filter by U" href="/Pages/contacts.aspx?filterBy=u">U</a></li>
              <li><a title="filter by V" href="/Pages/contacts.aspx?filterBy=v">V</a></li>
              <li><a title="filter by W" href="/Pages/contacts.aspx?filterBy=w">W</a></li>
              <li><a title="filter by X" href="/Pages/contacts.aspx?filterBy=x">X</a></li>
              <li><a title="filter by Y" href="/Pages/contacts.aspx?filterBy=y">Y</a></li>
              <li><a title="filter by Z" href="/Pages/contacts.aspx?filterBy=z">Z</a></li>
            </ul>
          </div>
        </div>
      </div>
    </div>
    <div class="row d-none d-md-block d-lg-flex" style="margin-top:20px;">
      <div class="col-sm-12">
        <div class="ServicesAZ">
          <div class="title col-sm-2">
            <h3>Contacts and services</h3>
          </div>
          <ul class="col-sm-10">
            <li><a title="filter by A" href="/Pages/contacts.aspx?filterBy=a">A</a></li>
            <li><a title="filter by B" href="/Pages/contacts.aspx?filterBy=b">B</a></li>
            <li><a title="filter by C" href="/Pages/contacts.aspx?filterBy=c">C</a></li>
            <li><a title="filter by D" href="/Pages/contacts.aspx?filterBy=d">D</a></li>
            <li><a title="filter by E" href="/Pages/contacts.aspx?filterBy=e">E</a></li>
            <li><a title="filter by F" href="/Pages/contacts.aspx?filterBy=f">F</a></li>
            <li><a title="filter by G" href="/Pages/contacts.aspx?filterBy=g">G</a></li>
            <li><a title="filter by H" href="/Pages/contacts.aspx?filterBy=h">H</a></li>
            <li><a title="filter by I" href="/Pages/contacts.aspx?filterBy=i">I</a></li>
            <li><a title="filter by J" href="/Pages/contacts.aspx?filterBy=j">J</a></li>
            <li><a title="filter by K" href="/Pages/contacts.aspx?filterBy=k">K</a></li>
            <li><a title="filter by L" href="/Pages/contacts.aspx?filterBy=l">L</a></li>
            <li><a title="filter by M" href="/Pages/contacts.aspx?filterBy=m">M</a></li>
            <li><a title="filter by N" href="/Pages/contacts.aspx?filterBy=n">N</a></li>
            <li><a title="filter by O" href="/Pages/contacts.aspx?filterBy=o">O</a></li>
            <li><a title="filter by P" href="/Pages/contacts.aspx?filterBy=p">P</a></li>
            <li><a title="filter by Q" href="/Pages/contacts.aspx?filterBy=q">Q</a></li>
            <li><a title="filter by R" href="/Pages/contacts.aspx?filterBy=r">R</a></li>
            <li><a title="filter by S" href="/Pages/contacts.aspx?filterBy=s">S</a></li>
            <li><a title="filter by T" href="/Pages/contacts.aspx?filterBy=t">T</a></li>
            <li><a title="filter by U" href="/Pages/contacts.aspx?filterBy=u">U</a></li>
            <li><a title="filter by V" href="/Pages/contacts.aspx?filterBy=v">V</a></li>
            <li><a title="filter by W" href="/Pages/contacts.aspx?filterBy=w">W</a></li>
            <li><a title="filter by X" href="/Pages/contacts.aspx?filterBy=x">X</a></li>
            <li><a title="filter by Y" href="/Pages/contacts.aspx?filterBy=y">Y</a></li>
            <li><a title="filter by Z" href="/Pages/contacts.aspx?filterBy=z">Z</a></li>
          </ul>
        </div>
      </div>
    </div>
    <!--end content-->
    <!--<script>
        $(document).ready(function () {
            var isDesktop = (function () {
                return !('ontouchstart' in window) // works on most browsers 
                || !('onmsgesturechange' in window); // works on ie10
            })();
            //edit, if you want to use this variable outside of this closure, or later use this:
            window.isDesktop = isDesktop;
            if (isDesktop) {
                $('#query').attr('autofocus', 'autofocus');
                setTimeout(function () {

                    var searchInput = $('input[autofocus]');
                    // Multiply by 2 to ensure the cursor always ends up at the end;
                    // Opera sometimes sees a carriage return as 2 characters.
                    var strLength = searchInput.val().length * 2;
                    searchInput.focus();
                    searchInput[0].setSelectionRange(strLength, strLength);

                }, 1000);
            }
        });
    </script>-->
  </div>
  <!-- Footer -->
  <section class="ourSites">
    <div class="container">
      <div class="row">
        <div class="col-md-12 noindex">
          <div class="row">
            <div class="col-12 col-md-6 col-lg-4 footerlogos">
              <h3>Government and administration</h3>
              <div class="row">
                <div class="col-12 col-xl-6">
                  <a title="Blog opens in a new window" href="https://blog.gov.je/" target="_blank">
               <img src="https://govje.azureedge.net/images/GOJ-Crest.svg" alt="">Blog</a>
                </div>
                <div class="col-12 col-xl-6">
                  <a title="m.gov.je opens in a new window" href="https://m.gov.je/" target="_blank"><img src="https://govje.azureedge.net/images/GOJ-Crest.svg" alt="">m.gov.je</a>
                </div>
                <div class="col-12 col-xl-6">
                  <a title="Open Data opens in a new window" href="https://opendata.gov.je/" target="_blank">
               <img src="https://govje.azureedge.net/images/GOJ-Crest.svg" alt="">Open Data</a>
                </div>
                <div class="col-12 col-xl-6">
                  <a title="Parishes opens in a new window" href="https://comite.je/" target="_blank">
               <img src="https://govje.azureedge.net/images/GOJ-Crest.svg" alt="">Parishes</a>
                </div>
                <div class="col-12 col-xl-6">
                  <a title="States Assembly opens in a new window" href="https://statesassembly.gov.je/" target="_blank">
               <img src="https://govje.azureedge.net/images/SOJ-Crest.svg" alt="">States Assembly</a>
                </div>
                <div class="col-12 col-xl-6">
                  <a title="Petitions opens in a new window" href="https://petitions.gov.je/" target="_blank">
               <img src="https://govje.azureedge.net/images/SOJ-Crest.svg" alt="">Petitions</a>
                </div>
              </div>
            </div>
            <div class="col-12 col-md-6 col-lg-8 footerlogos">
              <div class="border-spacer">
                <h3>Agencies and services</h3>
                <div class="row">
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="Digital Jersey opens in a new window" href="https://www.digital.je/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Digital-Jersey.svg" alt="">Digital Jersey</a>
                  </div>
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="Jersey Business opens in a new window" href="https://www.jerseybusiness.je/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Jersey-Business.svg" alt="">Jersey Business</a>
                  </div>
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="jersey Sport opens in a new window" href="https://www.jerseysport.je/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Jersey-Sport.svg" alt="">Jersey Sport</a>
                  </div>
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="Locate Jersey opens in a new window" href="https://www.locatejersey.com/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Locate-Jersey.svg" alt="">Locate Jersey</a>
                  </div>
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="Jersey Finance opens in a new window" href="https://www.jerseyfinance.je/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Jersey-finance.svg" alt="">Jersey Finance</a>
                  </div>
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="Visit Jersey opens in a new window" href="https://www.jersey.com/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Visit-Jersey.svg" alt="">Visit Jersey</a>
                  </div>
                  <div class="col-12 col-lg-6 col-xl-4">
                    <a title="Jersey Law opens in a new window" href="https://www.jerseylaw.je/" target="_blank">
                  <img src="https://govje.azureedge.net/images/Jlib.svg" alt="">Jersey Law</a>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>
  <footer>
    <div class="container">
      <div class="row">
        <div class="col-md-12">
          <dl id="socialMedia" class="homepage">
            <dt>Find us on social media</dt>
            <dd>
              <a title="Twitter opens in new window" class="noindex" href="https://twitter.com/govjersey" target="_blank"><span class="fa-stack fa-lg"><span class="fa fa-circle fa-stack-2x"></span><span class="fa fa-twitter fa-stack-1x fa-inverse"></span> </span><span class="accessibility">Twitter opens in new window</span> </a>
            </dd>
            <dd>
              <a title="Facebook opens in new window" class="noindex" href="https://www.facebook.com/GovernmentofJersey" target="_blank"><span class="fa-stack fa-lg"><span class="fa fa-circle fa-stack-2x"></span><span class="fa fa-facebook fa-stack-1x fa-inverse"></span> </span><span class="accessibility">Facebook opens in new window</span> </a>
            </dd>
            <dd>
              <a title="LinkedIn opens in new window" class="noindex" href="https://www.linkedin.com/company/government-of-jersey" target="_blank"><span class="fa-stack fa-lg"><span class="fa fa-circle fa-stack-2x"></span><span class="fa fa-linkedin fa-stack-1x fa-inverse"></span> </span><span class="accessibility">LinkedIn opens in new window</span> </a>
            </dd>
            <dd>
              <a title="Instagram opens in new window" class="noindex" href="https://www.instagram.com/governmentofjersey" target="_blank"><span class="fa-stack fa-lg"><span class="fa fa-circle fa-stack-2x"></span><span class="fa fa-instagram fa-stack-1x fa-inverse"></span> </span><span class="accessibility">Instagram opens in new window</span> </a>
            </dd>
            <dd>
              <a title="YouTube opens in new window" class="noindex" href="https://www.youtube.com/governmentofjersey" target="_blank"><span class="fa-stack fa-lg"><span class="fa fa-circle fa-stack-2x"></span><span class="fa fa-youtube-play fa-stack-1x fa-inverse"></span> </span><span class="accessibility">YouTube opens in new window</span> </a>
            </dd>
          </dl>
        </div>
      </div>
      <div class="row">
        <div class="col-md-12">
          <ul class="footerLinks">
            <li><a href="/Pages/Accessibility.aspx">Accessibility</a></li>
            <li><a href="https://one.gov.je/service/Customer_feedback">Customer feedback</a></li>
            <li><a href="/Pages/Privacy.aspx">Privacy</a></li>
            <li><a href="/Pages/Terms.aspx">Terms and conditions</a></li>
            <li><a href="/Pages/Sitemap.aspx">Sitemap</a></li>
            <li><a href="/Pages/TranslateSite.aspx">Translate</a></li>
            <li class="right">© States of Jersey 2010 - 2024</li>
          </ul>
        </div>
      </div>
    </div>
  </footer>
  <a href="#" class="back-to-top">Back to top</a>
  <script src="https://govje.azureedge.net/js/GovJE-0808.min.js"></script>
  <script>
    jQuery(document).ready(function() {
      var e = 400;
      var t = 500;
      jQuery(window).scroll(function() {
        if (jQuery(this).scrollTop() > e) {
          jQuery(".back-to-top").fadeIn(t)
        } else {
          jQuery(".back-to-top").fadeOut(t)
        }
      });
      jQuery(".back-to-top").click(function(e) {
        e.preventDefault();
        jQuery("html, body").animate({
          scrollTop: 0
        }, t);
        return false
      })
    })
  </script>
  <!-- WebMetric snippet starts here -->
  <div class="gm_sidebar gm_sidebar_cnr">
    <a href="https://websurveys2.govmetric.com/theme/gm/1574" target="_blank" class="gm_sidebar_anchor" title="feedback" rel="nofollow">
                <img src="https://websurveys2.govmetric.com/imgs/triggers/cnr.png" alt="rating button">
            </a>
  </div>
  <link rel="stylesheet" type="text/css" href="https://websurveys2.govmetric.com/css/client/gm_sidebar_cnr.css">
  <script type="text/javascript" src="https://websurveys2.govmetric.com/js/client/gm_sidebar.js"></script>
  <script type="text/javascript" src="https://hitcounter.govmetric.com/1575"></script>
  <!-- WebMetric snippet ends here -->
  <script type="text/javascript">
    function iOSversion() {
      if (/iP(hone|od|ad)/.test(navigator.platform)) {
        var r = navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/);
        return [parseInt(r[1], 10), parseInt(r[2], 10), parseInt(r[3] || 0, 10)]
      }
      return 0
    }
    ver = iOSversion(), ver[0] < 5 && $("div.gm_sidebar.gm_sidebar_cnr").css("display", "none !important");
  </script>
  <div style="display: none">
  </div>
  <script type="text/javascript">
    RegisterSod("require.js", "\u002f_layouts\u002f15\u002frequire.js?rev=bv3fWJhk0uFGpVwBxnZKNQ\u00253D\u00253DTAG0");
  </script>
  <script type="text/javascript">
    //<![CDATA[
    var _spFormDigestRefreshInterval = 1440000; //]]>
  </script>
</form>

Text Content

COOKIES ON GOV.JE



We use cookies to collect information about how you use gov.je

We use this information to make the website work as well as possible and improve
government services.



Accept all cookiesCookie settings
Necessary
Preferences
Statistics
Marketing
Allow selected cookies
Close
Cookie declarationAbout
Necessary cookies (68)
Necessary cookies help to make a website usable by enabling basic functions like
page navigation and access to secure areas of the website. The website cannot
function properly without these cookies.

NameProviderPurposeExpiryTypeSPAnimationEnabledwww.gov.jeDetects whether website
animated content should be
enabled.PersistentHTMLai_sessioncontent.powerapps.comPreserves users states
across page requests.1 dayHTTPARRAffinity [x7]Google
Azure
id.gov.je
register.jerseyme.gov.jeUsed to distribute traffic to the website on several
servers in order to optimise response
times.SessionHTTPARRAffinitySameSite [x7]Microsoft
Google
Azure
id.gov.je
register.jerseyme.gov.jeUsed to distribute traffic to the website on several
servers in order to optimise response
times.SessionHTTPcookietestcontent.powerapps.comThis cookie is used to determine
if the visitor has accepted the cookie consent
box.SessionHTTPUnityCache#XMLHttpRequestcdn.mygov.jeThis cookie is necessary for
the cache function. A cache is used by the website to optimize the response time
between the visitor and the website. The cache is usually stored on the
visitor’s browser.PersistentIDBAI_bufferGoogleUsed in context with the
"AI_sentBuffer" in order to limit the number of data-server-updates (Azure).
This synergy also allows the website to detect any duplicate
data-server-updates. SessionHTMLAI_sentBufferGoogleUsed in context with the
"AI_buffer" in order to limit the number of data-server-updates (Azure). This
synergy also allows the website to detect any duplicate data-server-updates.
SessionHTMLmanifests.artifactsGoogleUsed by Microsoft Power BI platform to
display graphics on the website.PersistentHTMLmanifests.extensionsGoogleUsed by
Microsoft Power BI platform to display graphics on the
website.PersistentHTMLmanifests.productsGoogleUsed by Microsoft Power BI
platform to display graphics on the
website.PersistentHTMLmanifests.tabsGoogleUsed by Microsoft Power BI platform to
display graphics on the website.PersistentHTML__cf_bm [x2]Digital Ocean
VimeoThis cookie is used to distinguish between humans and bots. This is
beneficial for the website, in order to make valid reports on the use of their
website.1 dayHTTPAWSALB [x7]CornerStone
forms.gov.je
GovMetricRegisters which server-cluster is serving the visitor. This is used in
context with load balancing, in order to optimize user experience. 7
daysHTTPAWSALBCORS [x7]CornerStone
forms.gov.je
GovMetric
ServMetricRegisters which server-cluster is serving the visitor. This is used in
context with load balancing, in order to optimize user experience. 7
daysHTTPJSESSIONID [x2]CornerStonePreserves users states across page
requests.SessionHTTPCookieConsent [x8]Cookiebot
gov.jeStores the user's cookie consent state for the current domain1
yearHTTPPHPSESSIDforms.gov.jePreserves user session state across page
requests.SessionHTTPSESS#forms.gov.jePreserves users states across page
requests.1 dayHTTPcookiesession1 [x2]gov.je
www.gov.jeSets a ID for the visitor. This serves to count the number of specific
visitors on the website.SessionHTTP__RequestVerificationTokenid.gov.jeHelps
prevent Cross-Site Request Forgery (CSRF)
attacks.SessionHTTPASP.NET_SessionId [x3]id.gov.je
Google
www.gov.jePreserves the visitor's session state across page
requests.SessionHTTP1.gifCookiebotUsed to count the number of sessions to the
website, necessary for optimizing CMP product delivery.
SessionPixel_ga [x3]GoogleRegisters a unique ID that is used to generate
statistical data on how the visitor uses the website.2
yearsHTTP_gid [x3]GoogleRegisters a unique ID that is used to generate
statistical data on how the visitor uses the website.1
dayHTTP.AspNetCore.Antiforgery.#register.jerseyme.gov.jeHelps prevent Cross-Site
Request Forgery (CSRF) attacks.SessionHTTP_cfuvidVimeoThis cookie is a part of
the services provided by Cloudflare - Including load-balancing, deliverance of
website content and serving DNS connection for website operators.
SessionHTTPWSS_FullScreenModewww.gov.jeThis cookie is used internally by the
website’s owners, when uploading or renewing website content.SessionHTTP

Preference cookies (5)
Preference cookies enable a website to remember information that changes the way
the website behaves or looks, like your preferred language or the region that
you are in.

NameProviderPurposeExpiryTypeUSERLANGUAGECornerStoneThe cookie determines the
preferred language and country-setting of the visitor - This allows the website
to show content most relevant to that region and
language.SessionHTTPAGS_ROLESAzureUsed in context with the website's map
integration. The cookie stores user interaction with the map in order to
optimize its functionality.1 dayHTTPmaps/gen_204GoogleUsed in context with the
website's map integration. The cookie stores user interaction with the map in
order to optimize its
functionality.SessionPixelCookieConsentBulkSetting-#CookiebotEnables cookie
consent across multiple websites1 yearHTML@@scroll#www.gov.jePendingSessionHTML

Statistics cookies (21)
Statistic cookies help website owners to understand how visitors interact with
websites by collecting and reporting information anonymously.

NameProviderPurposeExpiryTypeai_usercontent.powerapps.comUsed by Microsoft
Application Insights software to collect statistical usage and telemetry
information. The cookie stores a unique identifier to recognize users on
returning visits over time.1 yearHTTPWFESessionIdMicrosoftStores data on the
time spent on the website and its sub-pages, during the current session.
SessionHTTPc.gifMicrosoftCollects data on the user’s navigation and behavior on
the website. This is used to compile statistical reports and heatmaps for the
website owner.SessionPixel__utm.gifGoogleGoogle Analytics Tracking Code that
logs details about the visitor's browser and
computer.SessionPixelcollectGoogleUsed to send data to Google Analytics about
the visitor's device and behavior. Tracks the visitor across devices and
marketing channels.SessionPixel__utmaGoogleCollects data on the number of times
a user has visited the website as well as dates for the first and most recent
visit. Used by Google Analytics.2 yearsHTTP__utmbGoogleRegisters a timestamp
with the exact time of when the user accessed the website. Used by Google
Analytics to calculate the duration of a website visit.1
dayHTTP__utmcGoogleRegisters a timestamp with the exact time of when the user
leaves the website. Used by Google Analytics to calculate the duration of a
website visit.SessionHTTP__utmtGoogleUsed to throttle the speed of requests to
the server.1 dayHTTP__utmvGoogleSaves user-defined tracking parameters for use
in Google Analytics.SessionHTTP__utmzGoogleCollects data on where the user came
from, what search engine was used, what link was clicked and what search term
was used. Used by Google Analytics.6 monthsHTTP_clckMicrosoftCollects data on
the user’s navigation and behavior on the website. This is used to compile
statistical reports and heatmaps for the website owner.1
yearHTTP_clskMicrosoftRegisters statistical data on users' behaviour on the
website. Used for internal analytics by the website operator. 1
dayHTTP_ga_#GoogleUsed by Google Analytics to collect data on the number of
times a user has visited the website as well as dates for the first and most
recent visit. 2 yearsHTTP_gatGoogleUsed by Google Analytics to throttle request
rate1 dayHTTPpagevisitr1.trackedweb.netRegisters statistical data on users'
behaviour on the website. Used for internal analytics by the website operator.
SessionPixelp.gifAdobe Inc.Keeps track of special fonts used on the website for
internal analysis. The cookie does not register any visitor data.
SessionPixelvuidVimeoCollects data on the user's visits to the website, such as
which pages have been read.2 yearsHTTP_cltkMicrosoftRegisters statistical data
on users' behaviour on the website. Used for internal analytics by the website
operator. SessionHTMLCLIDMicrosoftCollects data on the user’s navigation and
behavior on the website. This is used to compile statistical reports and
heatmaps for the website owner.1 yearHTTPtdGoogleRegisters statistical data on
users' behaviour on the website. Used for internal analytics by the website
operator. SessionPixel

Marketing cookies (41)
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.

NameProviderPurposeExpiryTypeMR [x2]MicrosoftUsed to track visitors on multiple
websites, in order to present relevant advertisement based on the visitor's
preferences. 7 daysHTTPMUID [x2]MicrosoftUsed widely by Microsoft as a unique
user ID. The cookie enables user tracking by synchronising the ID across many
Microsoft domains.1 yearHTTPSRM_BMicrosoftTracks the user’s interaction with the
website’s search-bar-function. This data can be used to present the user with
relevant products or services. 1 yearHTTPANONCHKMicrosoftRegisters data on
visitors from multiple visits and on multiple websites. This information is used
to measure the efficiency of advertisement on websites. 1
dayHTTPSMMicrosoftRegisters a unique ID that identifies the user's device during
return visits across websites that use the same ad network. The ID is used to
allow targeted ads.SessionHTTPlastExternalReferrer Meta Platforms, Inc.Detects
how the user reached the website by registering their last
URL-address.PersistentHTMLlastExternalReferrerTime Meta Platforms, Inc.Detects
how the user reached the website by registering their last
URL-address.PersistentHTMLads/ga-audiencesGoogleUsed by Google AdWords to
re-engage visitors that are likely to convert to customers based on the
visitor's online behaviour across websites.SessionPixelNIDGoogleRegisters a
unique ID that identifies a returning user's device. The ID is used for targeted
ads.6 monthsHTTP_fbp Meta Platforms, Inc.Used by Facebook to deliver a series of
advertisement products such as real time bidding from third party advertisers.3
monthsHTTPdmSessionID [x3]static.trackedweb.netCollects information on what
products the visitor has viewed and the content of the shopping-cart. This is
used to increase the website's conversion rate through targeted advertisement
and product promotions through emails. 1
dayHTTPrecordID [x3]static.trackedweb.netCollects information on what products
the visitor has viewed and the content of the shopping-cart. This is used to
increase the website's conversion rate through targeted advertisement and
product promotions through emails. 1 yearHTTPi/jotTwitter Inc.Sets a unique ID
for the visitor, that allows third party advertisers to target the visitor with
relevant advertisement. This pairing service is provided by third party
advertisement hubs, which facilitates real-time bidding for advertisers.
SessionPixel#-#YouTubePendingSessionHTMLiU5q-!O9@$YouTubeRegisters a unique ID
to keep statistics of what videos from YouTube the user has
seen.SessionHTMLLAST_RESULT_ENTRY_KEYYouTubeUsed to track user’s interaction
with embedded
content.SessionHTTPLogsDatabaseV2:V#||LogsRequestsStoreYouTubePendingPersistentIDBnextIdYouTubeUsed
to track user’s interaction with embedded
content.SessionHTTPremote_sidYouTubeNecessary for the implementation and
functionality of YouTube video-content on the website.
SessionHTTPrequestsYouTubeUsed to track user’s interaction with embedded
content.SessionHTTPServiceWorkerLogsDatabase#SWHealthLogYouTubeNecessary for the
implementation and functionality of YouTube video-content on the website.
PersistentIDBTESTCOOKIESENABLEDYouTubeUsed to track user’s interaction with
embedded content.1 dayHTTPVISITOR_INFO1_LIVEYouTubeTries to estimate the users'
bandwidth on pages with integrated YouTube videos.180
daysHTTPVISITOR_PRIVACY_METADATAYouTubeStores the user's cookie consent state
for the current domain180 daysHTTPYSCYouTubeRegisters a unique ID to keep
statistics of what videos from YouTube the user has
seen.SessionHTTPyt.innertube::nextIdGoogleRegisters a unique ID to keep
statistics of what videos from YouTube the user has
seen.PersistentHTMLytidb::LAST_RESULT_ENTRY_KEYYouTubeStores the user's video
player preferences using embedded YouTube
videoPersistentHTMLYtIdbMeta#databasesYouTubeUsed to track user’s interaction
with embedded content.PersistentIDByt-remote-cast-availableYouTubeStores the
user's video player preferences using embedded YouTube
videoSessionHTMLyt-remote-cast-installedYouTubeStores the user's video player
preferences using embedded YouTube
videoSessionHTMLyt-remote-connected-devicesYouTubeStores the user's video player
preferences using embedded YouTube
videoPersistentHTMLyt-remote-device-idYouTubeStores the user's video player
preferences using embedded YouTube
videoPersistentHTMLyt-remote-fast-check-periodYouTubeStores the user's video
player preferences using embedded YouTube
videoSessionHTMLyt-remote-session-appYouTubeStores the user's video player
preferences using embedded YouTube
videoSessionHTMLyt-remote-session-nameYouTubeStores the user's video player
preferences using embedded YouTube videoSessionHTML

Unclassified (45)
Unclassified cookies are cookies that we are in the process of classifying,
together with the providers of individual cookies.

NameProviderPurposeExpiryTypelongTermCareDatawww.gov.jePendingPersistentHTMLRibbon.ListForm.Displaywww.gov.jePendingPersistentHTMLtestHousingChecklistData202107141145www.gov.jePendingPersistentHTMLwelcomeToJerseyDatawww.gov.jePendingPersistentHTMLGeocoderCache#objectsGooglePendingPersistentIDB/idbfs#FILE_DATAcdn.mygov.jePendingPersistentIDBEXPIRE_TIMESTAMPCornerStonePendingSessionHTTPJSESSIONID_FOSameSite [x2]CornerStonePendingSessionHTTPMTTRACEACTCornerStonePendingSessionHTTPSACCOUNTNAMECornerStonePendingSessionHTTPSUSERLOGINCornerStonePendingSessionHTTPTLK_THIRDPARTY_ALLOWEDCornerStonePendingSessionHTTPAPP_LANGforms.gov.jePending1
dayHTTPauthKeyforms.gov.jePendingSessionHTMLcouncilforms.gov.jePendingSessionHTMLlocaltimeforms.gov.jePendingSessionHTTPproductforms.gov.jePending1
dayHTTPSimpleSAMLSessionIDforms.gov.jePendingSessionHTTPSiteSettingsCacheforms.gov.jePendingSessionHTMLSiteSettings-CustomCssInlineforms.gov.jePendingSessionHTMLSiteSettings-CustomIFrameCssforms.gov.jePendingSessionHTMLdatabaseBtnDescwww.gov.jePendingSessionHTTPdatabaseBtnTextwww.gov.jePendingSessionHTTPFedAuthwww.gov.jePendingSessionHTTPsoj.health.register.dentalwww.gov.jePendingSessionHTMLsoj.health.register.healthwww.gov.jePendingSessionHTMLsoj.health.register.medicalwww.gov.jePendingSessionHTMLSPCacheLogger0www.gov.jePendingSessionHTMLSPCacheLogger1www.gov.jePendingSessionHTMLSPCacheLogger2www.gov.jePendingSessionHTMLSPCacheLogger3www.gov.jePendingSessionHTMLSPCacheLogger4www.gov.jePendingSessionHTMLSPCacheLogger5www.gov.jePendingSessionHTMLSPCacheLogger6www.gov.jePendingSessionHTMLSPCacheLogger7www.gov.jePendingSessionHTMLSPCacheLogger8www.gov.jePendingSessionHTMLSPCacheLoggersizewww.gov.jePendingSessionHTMLSPSuiteLinksCachedwww.gov.jePendingSessionHTMLSPSuiteLinksDatewww.gov.jePendingPersistentHTMLSPSuiteLinksJsonwww.gov.jePendingPersistentHTMLSPSuiteLinksLanguagewww.gov.jePendingPersistentHTMLSPSuiteLinksUserKeywww.gov.jePendingPersistentHTMLSPThemeCachewww.gov.jePendingPersistentHTMLSPThemeCacheTokenwww.gov.jePendingPersistentHTML

Information about the cookies we use and how we use them. We've also included
information about third-party cookies set by other websites.


YOUR CONSENT TO COOKIES

Most browsers support cookies but you can set your browser to decline them and
delete them whenever you like. However, some functions of our website may not
work as they should if cookies are not enabled.

We can store cookies on your device if they are strictly necessary for the
operation of our website. For all other types of cookies we need your
permission.



Your consent applies to the following domains: register.jerseyme.gov.je,
forms.gov.je, learningathome.gov.je, www.gov.je, one.gov.je, id.gov.je,
opendata.gov.je


Skip to main content Skip to accessibility
This website is not compatible with your web browser. You should install a newer
browser. If you live in Jersey and need help upgrading call the States of Jersey
web team on 440099.
gov.je

Information and public services for the Island of Jersey

L'înformâtion et les sèrvices publyis pouor I'Île dé Jèrri

 * Contacts
 * Translate
 * Login

 * Login

 * Choose the service you want to log in to:

 * gov.je
   
   Update your notification preferences

 * one.gov.je
   
   Access government services

 * CAESAR
   
   Clear goods through customs or claim relief

 * Talentlink
   
   View or update your States of Jersey job application

Search gov.je
Search
Weather forecast
Weather radar 16.4 °C
 * A to Z of forms and online services
 * Contacts
 * Coronavirus (COVID-19)
 * Court lists
 * Jobs
 * Newsroom

Information and public services for the Island of Jersey

Search gov.je Search



INFORMATION AND PUBLIC SERVICES FOR THE ISLAND OF JERSEY


GET YOUR SPRING BOOSTER VACCINATION


HAVE YOUR SAY


FILE YOUR 2023 TAX RETURN


MOST POPULAR

 * A to Z of forms and online services
 * Contacts
 * Coronavirus (COVID-19)
 * Court lists
 * Jobs
 * Newsroom
 * Weather


BROWSE BY SUBJECT


BENEFITS AND FINANCIAL SUPPORT

 * Income Support
 * Parental and family
 * Pensions


BUSINESS, INDUSTRY AND FINANCE

 * Eat Safe
 * Farming and fishing
 * Health and safety at work


CARING AND SUPPORT

 * Childcare
 * Children and Families Hub
 * Children's Social Care Service


CRIME AND JUSTICE

 * Community service
 * Criminal records checks
 * Petty debts court
 * Probation


EDUCATION

 * Primary schools
 * Schools
 * Term dates


EMPLOYMENT, CAREERS AND SKILLS

 * Contributions and registration cards
 * Financing higher education courses
 * Government employee information
 * Skills, careers and higher education


ENVIRONMENT

 * Climate Emergency
 * La Collette household recycling facilities
 * Protecting the environment
 * Recycling and waste


GOVERNMENT AND ADMINISTRATION

 * Departments
 * Freedom of Information (FOI)
 * States Reports
 * Submit feedback


HEALTH AND WELLBEING

 * Coronavirus (COVID-19)
 * Hospital waiting lists
 * Hospital wards
 * Patient and visitor support and feedback


HOME AND COMMUNITY

 * Home buyer's guide
 * Housing Advice Service
 * Housing rights and residential statuses
 * Your parish


LEISURE, CULTURE AND ENTERTAINMENT

 * Library services
 * Sport
 * What's on


LIFE EVENTS

 * Divorce
 * Getting married
 * Moving to Jersey


PLANNING AND BUILDING

 * Laws and guidance
 * Making an application
 * Permissions needed


STATISTICS AND PERFORMANCE

 * House price statistics
 * Retail prices index (inflation)
 * Statistical publications


STAYING SAFE

 * Be safe online
 * Emergency planning
 * Fire safety


TAXES AND YOUR MONEY

 * File your tax return
 * GST
 * Individuals' tax information
 * Submit company tax return
 * Tax online services


TRAVEL AND TRANSPORT

 * Customs and travel advice
 * Live available car park spaces
 * Motoring
 * Passports


PAY IT

 * Contributions and instalments
 * Customs duties
 * Friends and family top up for prisoners
 * GST declarations
 * Invoices
 * Parking fine
 * Tax, employer ITIS and domestic GST


REPORT IT

 * Benefit fraud
 * Crime
 * Crimestoppers: report a crime anonymously
 * Customs or immigration offence
 * Defective vehicle
 * Fire safety concerns
 * Love Jersey: fault reporting
 * Tax fraud, avoidance or evasion


TELL US

 * Business has ceased trading
 * Comments, complaints and suggestions
 * Consultations
 * File your tax return
 * Income Support: changes in circumstances
 * Leaving the Island
 * Personal tax enquiry
 * Update your contact details


GAZETTE

 * All official notices
 * Enactment notices
 * Parish notices
 * Public notices
 * Sanctions notices
 * Tender notices


WORK WITH US

 * Apply for Government of Jersey jobs
 * Search jobs on Jersey Public Service Careers

 * Browse
 * Pay it
 * Report it
 * Tell us
 * Gazette
 * Work with us


BENEFITS AND FINANCIAL SUPPORT

 * Income Support
 * Parental and family
 * Pensions


BUSINESS, INDUSTRY AND FINANCE

 * Eat Safe
 * Farming and fishing
 * Health and safety at work


CARING AND SUPPORT

 * Childcare
 * Children and Families Hub
 * Children's Social Care Service


CRIME AND JUSTICE

 * Community service
 * Criminal records checks
 * Petty debts court
 * Probation


EDUCATION

 * Primary schools
 * Schools
 * Term dates


EMPLOYMENT, CAREERS AND SKILLS

 * Contributions and registration cards
 * Financing higher education courses
 * Government employee information
 * Skills, careers and higher education


ENVIRONMENT

 * Climate Emergency
 * La Collette household recycling facilities
 * Protecting the environment
 * Recycling and waste


GOVERNMENT AND ADMINISTRATION

 * Departments
 * Freedom of Information (FOI)
 * States Reports
 * Submit feedback


HEALTH AND WELLBEING

 * Coronavirus (COVID-19)
 * Hospital waiting lists
 * Hospital wards
 * Patient and visitor support and feedback


HOME AND COMMUNITY

 * Home buyer's guide
 * Housing Advice Service
 * Housing rights and residential statuses
 * Your parish


LEISURE, CULTURE AND ENTERTAINMENT

 * Library services
 * Sport
 * What's on


LIFE EVENTS

 * Divorce
 * Getting married
 * Moving to Jersey


PLANNING AND BUILDING

 * Laws and guidance
 * Making an application
 * Permissions needed


STATISTICS AND PERFORMANCE

 * House price statistics
 * Retail prices index (inflation)
 * Statistical publications


STAYING SAFE

 * Be safe online
 * Emergency planning
 * Fire safety


TAXES AND YOUR MONEY

 * File your tax return
 * GST
 * Individuals' tax information
 * Submit company tax return
 * Tax online services


TRAVEL AND TRANSPORT

 * Customs and travel advice
 * Live available car park spaces
 * Motoring
 * Passports

Contributions and instalments
Customs duties
Friends and family top up for prisoners
GST declarations
Invoices
Parking fine
Tax, employer ITIS and domestic GST
Benefit fraud
Crime
Crimestoppers: report a crime anonymously
Customs or immigration offence
Defective vehicle
Fire safety concerns
Love Jersey: fault reporting
Tax fraud, avoidance or evasion
Business has ceased trading
Consultations
Income Support: changes in circumstances
Leaving the Island
File your tax return
Comments, complaints and suggestions
Update your contact details
Personal tax enquiry
All official notices
Enactment notices
Parish notices
Public notices
Tender notices
Sanctions notices
Apply for Government of Jersey jobs
Search jobs on Jersey Public Service Careers


NEWSROOM

07 May 2024


RETURN OF £829,500 TO REPUBLIC OF MOZAMBIQUE CONFIRMED

03 May 2024


ELECTRONIC OUTPATIENT PRESCRIBING IMPLEMENTED ACROSS HEALTH AND COMMUNITY
SERVICES

03 May 2024


ANNUAL REPORT AND ACCOUNTS 2023

02 May 2024


LATEST HOUSE PRICE INDEX REPORT PUBLISHED

--------------------------------------------------------------------------------


CONSULTATIONS


OBLIGED ENTITY CENTRAL REGISTER ACCESS


OVERDALE ACUTE HOSPITAL CONCEPT DESIGN CONSULTATION


REGULATION OF CARE (JERSEY) LAW 2014: INDEPENDENT REGULATION AND INSPECTION OF
HOSPITAL AND AMBULANCE SERVICES


CONTACTS AND SERVICES

 * A
 * B
 * C
 * D
 * E
 * F
 * G
 * H
 * I
 * J
 * K
 * L
 * M

--------------------------------------------------------------------------------

 * N
 * O
 * P
 * Q
 * R
 * S
 * T
 * U
 * V
 * W
 * X
 * Y
 * Z


CONTACTS AND SERVICES

 * A
 * B
 * C
 * D
 * E
 * F
 * G
 * H
 * I
 * J
 * K
 * L
 * M
 * N
 * O
 * P
 * Q
 * R
 * S
 * T
 * U
 * V
 * W
 * X
 * Y
 * Z


GOVERNMENT AND ADMINISTRATION

Blog
m.gov.je
Open Data
Parishes
States Assembly
Petitions


AGENCIES AND SERVICES

Digital Jersey
Jersey Business
Jersey Sport
Locate Jersey
Jersey Finance
Visit Jersey
Jersey Law
Find us on social media Twitter opens in new window Facebook opens in new window
LinkedIn opens in new window Instagram opens in new window YouTube opens in new
window
 * Accessibility
 * Customer feedback
 * Privacy
 * Terms and conditions
 * Sitemap
 * Translate
 * © States of Jersey 2010 - 2024

Back to top