Till brottsofferjouren kan du som är utsatt för brott, anhörig eller vittne vända dig för att få stöd. Vi hjälper dig att få kontakt med rätt personer och kompetens. Vi stöttar dig också i praktiska saker som att reda ut vilka möjligheter till ersättning som finns, hur du överprövar en nedlagd polisutredning och mycket mer.
Partille ingår i Brottsofferjouren Storgöteborg tillsammans med Göteborg, Härryda, Kungälv och Mölndal. Vi kan bland annat erbjuda dig:
- medmänskligt stöd
- råd och vägledning
- information om rättsprocessen
- hjälp att söka ersättning
- stöd inför, under och efter förhandling
(function () {
var blockId = 'contactblock-8987089';
var blockElement = document.getElementById(blockId);
if (!blockElement) {
return;
}
var copyButton = blockElement.querySelector('.copy-accordion-link');
var copiedPopup = document.getElementById('contactblock-popup-8987089');
var headingElement = blockElement.querySelector('[data-contact-block-heading]');
var copiedPopupTimeoutId = null;
var focusOutline = '2px solid #000';
var showHeadingFocusBorder = function () {
headingElement.style.outline = focusOutline;
headingElement.style.outlineOffset = '2px';
headingElement.style.borderRadius = '0.375rem';
};
var hideHeadingFocusBorder = function () {
headingElement.style.outline = '';
headingElement.style.outlineOffset = '';
headingElement.style.borderRadius = '';
};
if (headingElement) {
headingElement.addEventListener('focus', showHeadingFocusBorder);
headingElement.addEventListener('blur', hideHeadingFocusBorder);
document.addEventListener('mousedown', function (event) {
if (event.target === headingElement) {
return;
}
hideHeadingFocusBorder();
if (document.activeElement === headingElement) {
headingElement.blur();
}
});
if (window.location.hash === '#' + blockId) {
showHeadingFocusBorder();
headingElement.focus({ preventScroll: true });
}
window.addEventListener('hashchange', function () {
if (window.location.hash === '#' + blockId) {
showHeadingFocusBorder();
headingElement.focus({ preventScroll: true });
return;
}
hideHeadingFocusBorder();
});
}
if (copyButton && copiedPopup) {
var copyToClipboard = function (text) {
if (navigator.clipboard && window.isSecureContext) {
return navigator.clipboard.writeText(text);
}
return new Promise(function (resolve, reject) {
try {
var textarea = document.createElement('textarea');
textarea.value = text;
textarea.setAttribute('readonly', '');
textarea.style.position = 'absolute';
textarea.style.left = '-9999px';
document.body.appendChild(textarea);
textarea.select();
document.execCommand('copy');
document.body.removeChild(textarea);
resolve();
} catch (error) {
reject(error);
}
});
};
copyButton.addEventListener('click', function () {
var url = window.location.origin + window.location.pathname + '#' + blockId;
copyToClipboard(url).then(function () {
copiedPopup.classList.remove('hidden');
if (copiedPopupTimeoutId) {
clearTimeout(copiedPopupTimeoutId);
}
copiedPopupTimeoutId = window.setTimeout(function () {
copiedPopup.classList.add('hidden');
copiedPopupTimeoutId = null;
}, 2000);
}).catch(function (error) {
if (window.console && typeof window.console.log === 'function') {
window.console.log(error);
}
});
});
}
})();