[Tex/LaTex] How to reference chapter/section title when using cleveref

cleveref

As the title says, how can you reference a chapter or section title when using cref?
To be more clear: I do not want the label "section" or "chapter", I want the actual title of the chapter or section..

\documentclass{article}
\usepackage[norsk]{babel} 
\usepackage{tabularx}
\usepackage{apacite}
\usepackage{hyperref}
\usepackage{enumerate}
\usepackage[norsk,nameinlink]{cleveref}
\begin{document}

\section{Title}


\section{another title}
%I want to reference the first section here, with its name


\end{document}

Best Answer

This:

\documentclass{article}
\usepackage[norsk]{babel} 
\usepackage{tabularx}
\usepackage{apacite}
\usepackage{hyperref}
\usepackage{enumerate}
\usepackage[norsk,nameinlink]{cleveref}
\begin{document}

\section{Title}


\section{another title}
\label{sss}
%I want to reference the first section here, with its name

nameref: \nameref{sss}\\
cref: \cref{sss}\\
ref: \ref{sss}

\end{document}

Gives this after 2 or 3 compilations:

enter image description here