Queen Elizabeth's Foundation for Disabled People
Charity Number: 251051
Contact: Switchboard
Address: Leatherhead Court, Woodlands Road, Leatherhead, Surrey
Postcode: KT22 0BN
Phone: 01372 841 100
Website: www.qef.org.uk
Email: info@qef.org.uk
Summary: QEF works with people living with physical and learning disabilities or acquired brain injuries to gain new skills and increase independance. Whether it is learning every day life skills, rebuilding a life affected by brain injury, acquiring the skills to drive a specially adapted car or training for future employment QEF supports disabled people to achieve goals for life.
Note/Restrictions: Must be over 18
Related Articles
QVSR (Queen Victoria Seamen’s Rest)
Contact details: Website: https://www.qvsr.org.uk/ Contact page: https://www.qvsr.org.uk/contact-us/ Address: QVSR House, Poplar, East London What this organisation does QVSR (Queen Victoria Seamen’s Rest) is a long-established charity that supports ...
The Maritime Foundation
The Maritime Foundation Contact details Website: https://www.maritimefoundation.uk/ General enquiries: secretary@maritimefoundation.uk Maritime Media Awards enquiries: awards@maritimefoundation.uk Sponsorship and support enquiries: ...
E Hayes Dashwood Foundation
Charity Number: 246460 Address: c/o The Estate Office, 26E Radbourne Road, London Postcode: SW12 0EF Website: www.hayesdashwood.org.uk Summary: The Foundation owns 153 one, two and three bedroomed flats in Telferscot and Radbourne Roads in Balham, ...
Royal Merchant Navy Education Foundation
Charity Number: 1153323 Contact: RMNEF Address: 1a Charnham Lane, Hungerford, Berkshire Postcode: RG17 0EY Phone: 01488 567 890 Website: www.rmnef.org.uk Email: office@rmnef.org.uk Summary: The Foundation's objective is to afford charitable benefit ...
Lloyd's Register Foundation
Contact details: Website contact route: https://www.lrfoundation.org.uk/ About the Foundation: https://www.lrfoundation.org.uk/about-us News and updates: https://www.lrfoundation.org.uk/news Grant and programme information is available through the ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();