I have a bootstrap website and I stock user information in cookies with the plugin JS-cookie.
Can I show the value of the cookie in the HTML with classic JS/Jquery or do I have to use a framework like Angular ?
EDIT :
I use js-cookie https://github.com/js-cookie/js-cookie
So my code is, in the head page :
<script>Cookies.set('money', '200', { expires: 7 });</script>
and in the body :
<p> You have <script>Cookies.get('money')</script> dollars </p>