Hello,
Need a help of Expert:
Why is not display the text (“quotes”) in the “quote-box” ?
Please, do check my functions or there is some connectin errors, between HTML and JS ?
What I`m doing wrong?https://codepen.io/Kingainez/pen/MdYbXW
Many thanks,
Kinga
I can see 3 problems, but you’d still may need to do more to make it fully functional
- You need to load jquery in your codepen since you are using it (settings > Javascript > add jquery)
- You need to remove these inline
onclick
js functions below as you are already performing actions in your JS page for those events
<button class="btn btn-primary" id="inspirebtn" onclick="generateQuote">
<button class=" btn btn-primary" id="tweetbtn" onclick="tweetThis">
- This below is weird, you need to clean it up, you probably meant to add
div
tags
<div class="quote-box">
<id="quote-text"><i></i>
</id>