[Tex/LaTex] href not working in beamer (not clickable)

beamerhyperref

I have a beamer presentation and I would like to include a beamer presentation. the label from \href shows on the screen, but not as a link and it is not clickable. Same thing happens with \url.

Reduced example:

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{default}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\usepackage{verbatim}
\usepackage{booktabs}
\usepackage{pdfpages}
\usepackage{hyperref}

 \begin{document}
    \begin{frame}
    \frametitle{Historic data}
    \begin{itemize}
     \item Evolution over time $\rightarrow$ \href{http://drupalfun.com/dance/index.html}{Time machine}
    \end{itemize}
\end{frame}
\end{document}

Best Answer

as per @Jubob's suggestion, I looked at my viewer. It didn't work in ocular and acroread. Turns out I had the selection tool on instead of browsing tool in both softwares. Works now!

Related Question